using System.Collections.Generic; namespace API.DTOs.Statistics; public sealed record SpreadStatsDto { public List Buckets { get; set; } public int TotalCount { get; set; } }