Remove tracks from playlist

This commit is contained in:
Deluan 2020-05-16 18:10:08 -04:00 committed by Deluan Quintão
parent 5c95eed517
commit 12cf2f1104
6 changed files with 72 additions and 9 deletions

View file

@ -2,8 +2,6 @@ package model
import (
"time"
"github.com/deluan/rest"
)
type Playlist struct {
@ -41,7 +39,8 @@ type PlaylistTrack struct {
type PlaylistTracks []PlaylistTrack
type PlaylistTrackRepository interface {
rest.Repository
ResourceRepository
Add(mediaFileIds []string) error
Update(mediaFileIds []string) error
Delete(id string) error
}