2012-08-18 08:22:54 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2012-08-18 19:38:27 +00:00
|
|
|
|
/// Since it can be slow to collect this data, this class helps provide a way to calculate them all at once.
|
2012-08-18 08:22:54 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class ItemSpecialCounts
|
|
|
|
|
{
|
|
|
|
|
public int RecentlyAddedItemCount { get; set; }
|
|
|
|
|
public int RecentlyAddedUnPlayedItemCount { get; set; }
|
|
|
|
|
public int InProgressItemCount { get; set; }
|
|
|
|
|
public decimal WatchedPercentage { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|