single song watching

This commit is contained in:
Connor Johnstone
2026-03-23 17:19:34 -04:00
parent 673de39918
commit 59a26c18f3
4 changed files with 83 additions and 3 deletions

View File

@@ -282,6 +282,14 @@ pub struct AddSummary {
pub errors: u64,
}
#[derive(Debug, Clone, PartialEq, Deserialize)]
pub struct WatchTrackResponse {
pub id: i32,
pub status: String,
pub name: String,
pub artist_name: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Deserialize)]
pub struct SyncStats {
pub found: u64,