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