cloudroam
2025-04-18 f3e60d24d0f24dc5cf7d77f9b871f416370e9132
app/src/main/java/com/example/firstapp/database/entity/Reminder.kt
@@ -3,11 +3,13 @@
import androidx.room.Entity
import androidx.room.PrimaryKey
@Entity(tableName = "reminders")
data class Reminder(
    @PrimaryKey(autoGenerate = true) val id: Long = 0,
    val type: String,
    val nickname: String,
    val keywords: String
    @PrimaryKey(autoGenerate = true)
    val id: Long = 0,
    val categoryId: Int,
    val categoryName: String,
    val notificationMethod: String,
    val isEnabled: Boolean = true,
    val createdAt: Long = System.currentTimeMillis()