namespace API.DTOs.Reader;
///
/// A range of time to read a selection (series, chapter, etc)
///
public class HourEstimateRangeDto
{
///
/// Min hours to read the selection
///
public int MinHours { get; set; } = 1;
///
/// Max hours to read the selection
///
public int MaxHours { get; set; } = 1;
///
/// Estimated average hours to read the selection
///
public int AvgHours { get; set; } = 1;
///
/// Does the user have progress on the range this represents
///
public bool HasProgress { get; set; } = false;
}