Initial commit

This commit is contained in:
Aryan 2026-02-24 17:37:40 +05:30
commit 6072b2ba29
844 changed files with 220532 additions and 0 deletions

View file

@ -0,0 +1,16 @@
package com.aryan.reader.data
import androidx.room.ColumnInfo
import androidx.room.Entity
import androidx.room.PrimaryKey
@Entity(tableName = "custom_fonts")
data class CustomFontEntity(
@PrimaryKey val id: String, // UUID
val displayName: String,
val fileName: String, // The actual filename on disk (e.g., font_uuid.ttf)
val fileExtension: String, // ttf, otf, woff2
val path: String, // Absolute path to the file
val timestamp: Long,
@ColumnInfo(defaultValue = "0") val isDeleted: Boolean = false
)