Add drawer menu with flat structure, unified panel styling, Room/SQLCipher setup

This commit is contained in:
Алексей Будаев 2026-04-07 19:23:52 +08:00
parent 21505aae75
commit 7eadec669c
45 changed files with 1378 additions and 18 deletions

View file

@ -0,0 +1,15 @@
package com.mistral.chat.data
import androidx.room.Entity
import androidx.room.PrimaryKey
@Entity(tableName = "profiles")
data class Profile(
@PrimaryKey(autoGenerate = true)
val id: Long = 0,
val name: String,
val bio: String = "",
val preferences: String = "",
val createdAt: Long = System.currentTimeMillis(),
val updatedAt: Long = System.currentTimeMillis()
)