DocumentInfo
data class DocumentInfo(val id: String = GenerateId.generate(), val title: String = "", val createdAt: Instant, val lastUpdatedAt: Instant, val parentId: String = "root", val icon: MenuItem.Icon? = null)
Dto class to keep information about the document
Constructors
Link copied to clipboard
constructor(id: String = GenerateId.generate(), title: String = "", createdAt: Instant, lastUpdatedAt: Instant, parentId: String = "root", icon: MenuItem.Icon? = null)