You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
295 B
7 lines
295 B
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}#end |
|
|
|
// TODO add your ui models. Remove the eventSink if you don't have events. |
|
// Do not use default value, so no member get forgotten in the presenters. |
|
data class ${NAME}State( |
|
val eventSink: (${NAME}Events) -> Unit |
|
)
|
|
|