add more channel feature reporting

This commit is contained in:
Luke Pulverenti
2014-05-27 13:57:29 -04:00
parent 680ffeebf7
commit ce8c5a1a3c
10 changed files with 88 additions and 26 deletions

View File

@@ -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
}
}