jellyfin/MediaBrowser.Model/Entities/ItemSpecialCounts.cs
LukePulverenti Luke Pulverenti luke pulverenti f392de9b69 Renamed watched to played (since we support audio)
2012-08-19 13:00:52 -04:00

15 lines
484 B
C#

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Since it can be slow to collect this data, this class helps provide a way to calculate them all at once.
/// </summary>
public class ItemSpecialCounts
{
public int RecentlyAddedItemCount { get; set; }
public int RecentlyAddedUnPlayedItemCount { get; set; }
public int InProgressItemCount { get; set; }
public decimal PlayedPercentage { get; set; }
}
}