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.
8 lines
295 B
8 lines
295 B
1 year ago
|
#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
|
||
|
)
|