using API.Services;
namespace API.Entities.Interfaces;
/// 
/// Entity has read time estimate properties to estimate time to read
/// 
public interface IHasReadTimeEstimate
{
    /// 
    /// Min hours to read the chapter
    /// 
    /// Uses a fixed number to calculate from 
    public int MinHoursToRead { get; set; }
    /// 
    /// Max hours to read the chapter
    /// 
    /// Uses a fixed number to calculate from 
    public int MaxHoursToRead { get; set; }
    /// 
    /// Average hours to read the chapter
    /// 
    /// Uses a fixed number to calculate from 
    public int AvgHoursToRead { get; set; }
}