bunch of work on Subsonic mediaprovider adapter

This commit is contained in:
Drew Weymouth
2023-05-14 17:48:06 -07:00
parent c4436a4887
commit e34497ec24
5 changed files with 664 additions and 1 deletions
+3
View File
@@ -48,6 +48,8 @@ type Track struct {
ParentID string
Name string
Duration int
TrackNumber int
DiscNumber int
Genre string
ArtistIDs []string
ArtistNames []string
@@ -66,6 +68,7 @@ type Playlist struct {
Description string
Public bool
Owner string
TrackCount int
}
type PlaylistWithTracks struct {