-
-
Save skydoves/5d9b4cece8c8281c58ee0b0045edf1ee to your computer and use it in GitHub Desktop.
timeline_ui
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Serializable | |
data class TimelineTopUi( | |
override val order: Int, | |
val banner: ImageUi | |
): UiComponent | |
@Serializable | |
data class TimelineCenterUi( | |
override val order: Int, | |
val title: TextUi, | |
val list: ListUi | |
) | |
@Serializable | |
data class TimelineBottomUi( | |
override val order: Int, | |
val title: TextUi, | |
val list: ListUi | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment