diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-27 13:57:29 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-27 13:57:29 -0400 |
| commit | ce8c5a1a3cc678c1e5dc4bd8a8f811895891fff9 (patch) | |
| tree | 1ec3db8bfcdec64d11b3f678111ffaee536caf82 /MediaBrowser.Model/Channels | |
| parent | 680ffeebf7bc4b5f07daa360ba4b89526cd2db9f (diff) | |
add more channel feature reporting
Diffstat (limited to 'MediaBrowser.Model/Channels')
| -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 } } |
