mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Rename domain
to model
This commit is contained in:
parent
25686c1742
commit
0ea2bd79d9
54 changed files with 404 additions and 404 deletions
22
model/playlist.go
Normal file
22
model/playlist.go
Normal file
|
@ -0,0 +1,22 @@
|
|||
package model
|
||||
|
||||
type Playlist struct {
|
||||
ID string
|
||||
Name string
|
||||
Comment string
|
||||
FullPath string
|
||||
Duration int
|
||||
Owner string
|
||||
Public bool
|
||||
Tracks []string
|
||||
}
|
||||
|
||||
type PlaylistRepository interface {
|
||||
BaseRepository
|
||||
Put(m *Playlist) error
|
||||
Get(id string) (*Playlist, error)
|
||||
GetAll(options ...QueryOptions) (Playlists, error)
|
||||
PurgeInactive(active Playlists) ([]string, error)
|
||||
}
|
||||
|
||||
type Playlists []Playlist
|
Loading…
Add table
Add a link
Reference in a new issue