feat(domain): add Station, Track, PlayerState, DeeplinkService models

This commit is contained in:
nk
2026-06-01 12:05:13 +03:00
parent 7b1aa0c073
commit d345cd40b8
4 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.radiola.domain.model
data class Track(
val artist: String,
val song: String,
val coverUrl: String?,
val stationName: String
)