16 lines
349 B
Kotlin
16 lines
349 B
Kotlin
package it.vfsfitvnm.vimusic.models
|
|
|
|
import androidx.compose.runtime.Immutable
|
|
import androidx.room.Entity
|
|
import androidx.room.PrimaryKey
|
|
|
|
@Immutable
|
|
@Entity
|
|
data class Artist(
|
|
@PrimaryKey val id: String,
|
|
val name: String? = null,
|
|
val thumbnailUrl: String? = null,
|
|
val timestamp: Long? = null,
|
|
val bookmarkedAt: Long? = null,
|
|
)
|