-
-
Save skydoves/bd28e8f77577554a59abc1ddc87a7654 to your computer and use it in GitHub Desktop.
imageui
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
@Immutable | |
@Serializable | |
data class ImageUi( | |
val title: String = "", | |
val url: String, | |
val size: DpSizeUi = DpSizeUi(0, 0), | |
val scaleType: String, | |
) : UiComponent | |
@Immutable | |
@Serializable | |
data class DpSizeUi( | |
val width: Int, | |
val height: Int | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment