diff options
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelFeatures.cs')
| -rw-r--r-- | MediaBrowser.Model/Channels/ChannelFeatures.cs | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelFeatures.cs b/MediaBrowser.Model/Channels/ChannelFeatures.cs index d3af8dadf..cec40d7f2 100644 --- a/MediaBrowser.Model/Channels/ChannelFeatures.cs +++ b/MediaBrowser.Model/Channels/ChannelFeatures.cs @@ -39,10 +39,10 @@ namespace MediaBrowser.Model.Channels public bool SupportsSortOrderToggle { get; set; } /// <summary> - /// Gets or sets a value indicating whether the channel content is just a single media list. + /// Gets or sets a value indicating whether this instance can filter. /// </summary> - /// <value><c>true</c> if this instance is single media list; otherwise, <c>false</c>.</value> - public bool IsSingleMediaList { get; set; } + /// <value><c>true</c> if this instance can filter; otherwise, <c>false</c>.</value> + public bool CanFilter { get; set; } public ChannelFeatures() { @@ -57,9 +57,10 @@ namespace MediaBrowser.Model.Channels { Name = 0, CommunityRating = 1, - ReleaseDate = 2, - Runtime = 3, - CommunityMostWatched = 4, - UserPlayCount = 5 + ContentReleaseDate = 2, + DateAdded = 3, + Runtime = 4, + CommunityMostWatched = 5, + UserPlayCount = 6 } } |
