Create playqueue table and repository

This commit is contained in:
Deluan 2020-07-31 11:42:51 -04:00 committed by Deluan Quintão
parent 3c2b14d362
commit 721a959735
4 changed files with 303 additions and 0 deletions

24
model/playqueue.go Normal file
View file

@ -0,0 +1,24 @@
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)
}