Kavita/API/DTOs/Statistics/Count.cs
2025-05-04 08:41:29 -05: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; }
}