Browse Source

chore(playlist): remove unused code

bergquist 10 years ago
parent
commit
73d6b95339
1 changed files with 0 additions and 2 deletions
  1. 0 2
      pkg/models/playlist.go

+ 0 - 2
pkg/models/playlist.go

@@ -76,7 +76,6 @@ type UpdatePlaylistCommand struct {
 	OrgId    int64             `json:"-"`
 	Id       int64             `json:"id" binding:"Required"`
 	Name     string            `json:"name" binding:"Required"`
-	Type     string            `json:"type"`
 	Interval string            `json:"interval"`
 	Items    []PlaylistItemDTO `json:"items"`
 
@@ -86,7 +85,6 @@ type UpdatePlaylistCommand struct {
 type CreatePlaylistCommand struct {
 	Name     string            `json:"name" binding:"Required"`
 	Interval string            `json:"interval"`
-	Data     []int64           `json:"data"`
 	Items    []PlaylistItemDTO `json:"items"`
 
 	OrgId  int64 `json:"-"`