mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
21 lines
559 B
C#
21 lines
559 B
C#
namespace Kavita.Models.DTOs.Reader;
|
|
|
|
/// <summary>
|
|
/// A range of time to read a selection (series, chapter, etc)
|
|
/// </summary>
|
|
public sealed record HourEstimateRangeDto
|
|
{
|
|
/// <summary>
|
|
/// Min hours to read the selection
|
|
/// </summary>
|
|
public int MinHours { get; init; } = 1;
|
|
/// <summary>
|
|
/// Max hours to read the selection
|
|
/// </summary>
|
|
public int MaxHours { get; init; } = 1;
|
|
/// <summary>
|
|
/// Estimated average hours to read the selection
|
|
/// </summary>
|
|
public float AvgHours { get; init; } = 1f;
|
|
}
|