Package-level declarations
Types
Link copied to clipboard
data class Note(val id: Int = 0, val title: String, val content: String, val timestamp: Long = System.currentTimeMillis(), val isDeleted: Boolean = false)
Represents a single note entity in the application. This data class is used by Room to create the 'notes' table in the database. Each instance of this class corresponds to a row in the 'notes' table.