From 64a18874e1b91cd109f5ddcefa585c33084d878e Mon Sep 17 00:00:00 2001 From: bergquist Date: Fri, 29 Jan 2016 01:23:51 +0100 Subject: [PATCH] style(playlist): remove unused code --- pkg/models/playlist.go | 2 -- 1 file changed, 2 deletions(-) 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"`