mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Add created
and changed
fields to playlists responses
This commit is contained in:
parent
803a5776ae
commit
e232c5c561
12 changed files with 163 additions and 68 deletions
|
@ -1,13 +1,17 @@
|
|||
package model
|
||||
|
||||
import "time"
|
||||
|
||||
type Playlist struct {
|
||||
ID string
|
||||
Name string
|
||||
Comment string
|
||||
Duration float32
|
||||
Owner string
|
||||
Public bool
|
||||
Tracks MediaFiles
|
||||
ID string
|
||||
Name string
|
||||
Comment string
|
||||
Duration float32
|
||||
Owner string
|
||||
Public bool
|
||||
Tracks MediaFiles
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
||||
type PlaylistRepository interface {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue