AgendaItem

@Serializable
data class AgendaItem(val time: String, val title: String, val description: String? = null)

议程项。

Constructors

Link copied to clipboard
constructor(time: String, title: String, description: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "description")
val description: String?

描述

Link copied to clipboard
@SerialName(value = "time")
val time: String

时间

Link copied to clipboard
@SerialName(value = "title")
val title: String

标题