forked from dsutanto/bChot-android
7 lines
214 B
Kotlin
7 lines
214 B
Kotlin
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}#end
|
|
|
|
// TODO Add your events or remove the file completely if no events
|
|
sealed interface ${NAME}Event {
|
|
data object MyEvent: ${NAME}Event
|
|
}
|