ItemSpecialCounts.cs 484 B

1234567891011121314
  1. 
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// Since it can be slow to collect this data, this class helps provide a way to calculate them all at once.
  6. /// </summary>
  7. public class ItemSpecialCounts
  8. {
  9. public int RecentlyAddedItemCount { get; set; }
  10. public int RecentlyAddedUnPlayedItemCount { get; set; }
  11. public int InProgressItemCount { get; set; }
  12. public decimal PlayedPercentage { get; set; }
  13. }
  14. }