diff --git a/pkg/models/playlist.go b/pkg/models/playlist.go index 4c37c369b3e..1eb2e1ea915 100644 --- a/pkg/models/playlist.go +++ b/pkg/models/playlist.go @@ -78,7 +78,6 @@ type UpdatePlaylistCommand struct { Name string `json:"name" binding:"Required"` Type string `json:"type"` Interval string `json:"interval"` - Data []int64 `json:"data"` Items []PlaylistItemDTO `json:"items"` Result *PlaylistDTO @@ -86,7 +85,6 @@ type UpdatePlaylistCommand struct { type CreatePlaylistCommand struct { Name string `json:"name" binding:"Required"` - Type string `json:"type"` Interval string `json:"interval"` Data []int64 `json:"data"` Items []PlaylistItemDTO `json:"items"`