feat(domain): add Station, Track, PlayerState, DeeplinkService models
This commit is contained in:
12
app/src/main/java/com/radiola/domain/model/Station.kt
Normal file
12
app/src/main/java/com/radiola/domain/model/Station.kt
Normal file
@@ -0,0 +1,12 @@
|
||||
package com.radiola.domain.model
|
||||
|
||||
data class Station(
|
||||
val id: Int,
|
||||
val name: String,
|
||||
val prefix: String,
|
||||
val streamUrl: String,
|
||||
val coverUrl: String,
|
||||
val genre: String,
|
||||
val tags: List<String>,
|
||||
val sortOrder: Int
|
||||
)
|
||||
Reference in New Issue
Block a user