namespace API.DTOs.Reader; /// /// A range of time to read a selection (series, chapter, etc) /// public record HourEstimateRangeDto { /// /// Min hours to read the selection /// public int MinHours { get; init; } = 1; /// /// Max hours to read the selection /// public int MaxHours { get; init; } = 1; /// /// Estimated average hours to read the selection /// public int AvgHours { get; init; } = 1; }