Closes #62 Reviewed-on: #64 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
14 lines
309 B
Rust
14 lines
309 B
Rust
#[derive(Clone, Debug, Default)]
|
|
pub struct QueuedSong {
|
|
pub id: uuid::Uuid,
|
|
pub song: icarus_models::song::Song,
|
|
pub path: String,
|
|
}
|
|
|
|
#[derive(Clone, Debug, Default)]
|
|
pub struct QueuedCoverArt {
|
|
pub id: uuid::Uuid,
|
|
pub coverart: icarus_models::coverart::CoverArt,
|
|
pub path: String,
|
|
}
|