Added filters to the item list page

This commit is contained in:
Luke Pulverenti
2013-03-30 10:57:30 -04:00
parent a0834c5710
commit 1fcf696bd5
5 changed files with 81 additions and 2 deletions

View File

@@ -33,6 +33,14 @@ namespace MediaBrowser.Model.Querying
/// <summary>
/// The item is resumable
/// </summary>
IsResumable = 7
IsResumable = 7,
/// <summary>
/// The likes
/// </summary>
Likes = 8,
/// <summary>
/// The dislikes
/// </summary>
Dislikes = 9
}
}

View File

@@ -50,5 +50,9 @@ namespace MediaBrowser.Model.Querying
/// The production year
/// </summary>
public const string ProductionYear = "ProductionYear";
/// <summary>
/// The play count
/// </summary>
public const string PlayCount = "PlayCount";
}
}