refactor: Use data classes for Settings + Game

This commit is contained in:
Lucàs
2025-01-03 18:41:47 +01:00
parent 5884e1d7be
commit 1edd76f618
19 changed files with 410 additions and 282 deletions
@@ -0,0 +1,8 @@
package fr.univpau.queezer.data
data class Track(
val title: String,
val artist: Artist,
val preview: String,
val album: Album
)