diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-28 16:49:43 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-28 16:49:43 -0400 |
| commit | 1fcfff41c7d33266a059b9f4161f9aea34be8de4 (patch) | |
| tree | db41aa2494cc0a69299f50efc2a53ef781dc5741 /MediaBrowser.Controller/Channels/ChannelItemInfo.cs | |
| parent | c05cb1dcb1bb51cadc6e413395f2adb63cbab6ad (diff) | |
update channels
Diffstat (limited to 'MediaBrowser.Controller/Channels/ChannelItemInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/ChannelItemInfo.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelItemInfo.cs b/MediaBrowser.Controller/Channels/ChannelItemInfo.cs index a0fbd9245..587023ab4 100644 --- a/MediaBrowser.Controller/Channels/ChannelItemInfo.cs +++ b/MediaBrowser.Controller/Channels/ChannelItemInfo.cs @@ -25,7 +25,7 @@ namespace MediaBrowser.Controller.Channels public List<string> Tags { get; set; } public List<PersonInfo> People { get; set; } - + public float? CommunityRating { get; set; } public long? RunTimeTicks { get; set; } @@ -37,7 +37,7 @@ namespace MediaBrowser.Controller.Channels public ChannelMediaContentType ContentType { get; set; } public ExtraType ExtraType { get; set; } - public TrailerType TrailerType { get; set; } + public List<TrailerType> TrailerTypes { get; set; } public Dictionary<string, string> ProviderIds { get; set; } @@ -56,6 +56,7 @@ namespace MediaBrowser.Controller.Channels public ChannelItemInfo() { MediaSources = new List<ChannelMediaInfo>(); + TrailerTypes = new List<TrailerType>(); Genres = new List<string>(); Studios = new List<string>(); People = new List<PersonInfo>(); |
