Kavita/API/DTOs/Statistics/Count.cs
2025-05-04 07:14:44 -07:00

7 lines
166 B
C#

namespace API.DTOs.Statistics;
public sealed record StatCount<T> : ICount<T>
{
public T Value { get; set; } = default!;
public long Count { get; set; }
}