Make Room models @Immutable

This commit is contained in:
vfsfitvnm
2022-08-26 10:30:02 +02:00
parent e7d768e6bd
commit 305d6c80c5
12 changed files with 24 additions and 0 deletions

View File

@@ -1,10 +1,12 @@
package it.vfsfitvnm.vimusic.models
import androidx.compose.runtime.Immutable
import androidx.media3.common.MediaItem
import androidx.room.ColumnInfo
import androidx.room.Entity
import androidx.room.PrimaryKey
@Immutable
@Entity
class QueuedMediaItem(
@PrimaryKey(autoGenerate = true) val id: Long = 0,