feat(playlist): renames timespan to interval

This commit is contained in:
bergquist
2016-01-12 13:56:47 +01:00
parent d0bcd1d87c
commit e8786b0747
8 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -14,14 +14,14 @@ var (
type Playlist struct {
Id int64 `json:"id"`
Title string `json:"title"`
Timespan string `json:"timespan"`
Interval string `json:"interval"`
OrgId int64 `json:"-"`
}
type PlaylistDTO struct {
Id int64 `json:"id"`
Title string `json:"title"`
Timespan string `json:"timespan"`
Interval string `json:"interval"`
OrgId int64 `json:"-"`
Items []PlaylistItemDTO `json:"items"`
}
@@ -83,7 +83,7 @@ type UpdatePlaylistQuery struct {
Id int64
Title string
Type string
Timespan string
Interval string
Items []PlaylistItemDTO
Result *PlaylistDTO
@@ -92,7 +92,7 @@ type UpdatePlaylistQuery struct {
type CreatePlaylistQuery struct {
Title string
Type string
Timespan string
Interval string
Data []int64
OrgId int64
Items []PlaylistItemDTO