Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created September 9, 2024 11:38
Show Gist options
  • Save skydoves/5d9b4cece8c8281c58ee0b0045edf1ee to your computer and use it in GitHub Desktop.
Save skydoves/5d9b4cece8c8281c58ee0b0045edf1ee to your computer and use it in GitHub Desktop.
timeline_ui
@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