jellyfin/MediaBrowser.Model/Entities/ItemSpecialCounts.cs

15 lines
485 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 WatchedPercentage { get; set; }
}
}