Add songs to playlists with drag and drop
This commit is contained in:
+7
-1
@@ -38,7 +38,13 @@ type Album struct {
|
||||
UpdatedAt time.Time `structs:"updated_at" json:"updatedAt"`
|
||||
}
|
||||
|
||||
type Albums []Album
|
||||
type (
|
||||
Albums []Album
|
||||
DiscID struct {
|
||||
AlbumID string `json:"albumId"`
|
||||
DiscNumber int `json:"discNumber"`
|
||||
}
|
||||
)
|
||||
|
||||
type AlbumRepository interface {
|
||||
CountAll(...QueryOptions) (int64, error)
|
||||
|
||||
Reference in New Issue
Block a user