TableCellContent

@Serializable
sealed class TableCellContent

Sealed class representing different types of content a table cell can contain.

Inheritors

Types

Link copied to clipboard
@Serializable
data class Checkbox(val isChecked: Boolean) : TableCellContent
Link copied to clipboard
@Serializable
data class Text(val value: String?) : TableCellContent