Add drawer menu with flat structure, unified panel styling, Room/SQLCipher setup
This commit is contained in:
parent
21505aae75
commit
7eadec669c
45 changed files with 1378 additions and 18 deletions
15
app/src/main/java/com/mistral/chat/data/Profile.kt
Normal file
15
app/src/main/java/com/mistral/chat/data/Profile.kt
Normal 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()
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue