Files
muza/app/src/main/kotlin/it/vfsfitvnm/vimusic/models/Artist.kt
2022-10-14 16:17:44 +02:00

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,
)