mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 04:26:11 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
25 lines
833 B
C#
25 lines
833 B
C#
|
|
namespace Kavita.Models.Entities.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Entity has read time estimate properties to estimate time to read
|
|
/// </summary>
|
|
public interface IHasReadTimeEstimate
|
|
{
|
|
/// <summary>
|
|
/// Min hours to read the chapter
|
|
/// </summary>
|
|
/// <remarks>Uses a fixed number to calculate from <see cref="ReaderService"/></remarks>
|
|
public int MinHoursToRead { get; set; }
|
|
/// <summary>
|
|
/// Max hours to read the chapter
|
|
/// </summary>
|
|
/// <remarks>Uses a fixed number to calculate from <see cref="ReaderService"/></remarks>
|
|
public int MaxHoursToRead { get; set; }
|
|
/// <summary>
|
|
/// Average hours to read the chapter
|
|
/// </summary>
|
|
/// <remarks>Uses a fixed number to calculate from <see cref="ReaderService"/></remarks>
|
|
public float AvgHoursToRead { get; set; }
|
|
}
|