Initial commit
This commit is contained in:
12
app/src/main/kotlin/it/vfsfitvnm/vimusic/models/Info.kt
Normal file
12
app/src/main/kotlin/it/vfsfitvnm/vimusic/models/Info.kt
Normal file
@@ -0,0 +1,12 @@
|
||||
package it.vfsfitvnm.vimusic.models
|
||||
|
||||
import androidx.room.Entity
|
||||
import androidx.room.PrimaryKey
|
||||
|
||||
// I know...
|
||||
@Entity
|
||||
data class Info(
|
||||
@PrimaryKey(autoGenerate = true) val id: Long = 0,
|
||||
val browseId: String?,
|
||||
val text: String
|
||||
)
|
||||
Reference in New Issue
Block a user