chore(playlist): remove unused code

This commit is contained in:
bergquist
2016-01-29 20:24:06 +01:00
parent a2c00f1cc5
commit 73d6b95339

View File

@@ -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:"-"`