2025-05-04 07:14:44 -07:00

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; }
}