mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 14:30:33 -04:00
8 lines
166 B
C#
8 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; }
|
|
}
|