mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 11:17:19 +03:00
19 lines
342 B
Go
19 lines
342 B
Go
package domain
|
|
|
|
type Playlist struct {
|
|
Id string
|
|
Name string
|
|
FullPath string
|
|
Tracks []string
|
|
}
|
|
|
|
type PlaylistRepository interface {
|
|
BaseRepository
|
|
Put(m *Playlist) error
|
|
Get(id string) (*Playlist, error)
|
|
GetAll(options QueryOptions) (*Playlists, error)
|
|
PurgeInactive(active *Playlists) error
|
|
}
|
|
|
|
type Playlists []Playlist
|