mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-18 00:50:04 -05:00
15 lines
484 B
C#
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; }
|
|
}
|
|
}
|