namespace API.DTOs.Statistics; /// /// A bucket of items (fixed) from 0-X, X-X*2 /// public sealed record StatBucketDto { public int RangeStart { get; set; } /// /// Null for the last range (1000+) /// public int? RangeEnd { get; set; } public int Count { get; set; } /// /// Percentage of total chapters /// public decimal Percentage { get; set; } }