mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
24 lines
619 B
Go
24 lines
619 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type PlayQueue struct {
|
|
ID string `json:"id" orm:"column(id)"`
|
|
UserID string `json:"userId" orm:"column(user_id)"`
|
|
Comment string `json:"comment"`
|
|
Current string `json:"current"`
|
|
Position float32 `json:"position"`
|
|
ChangedBy string `json:"changedBy"`
|
|
Items MediaFiles `json:"items,omitempty"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|
|
|
|
type PlayQueues []PlayQueue
|
|
|
|
type PlayQueueRepository interface {
|
|
Store(queue *PlayQueue) error
|
|
Retrieve(userId string) (*PlayQueue, error)
|
|
}
|