
Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Weblate (bot) <hosted@weblate.org> Co-authored-by: Gregory.Open <gregory.open@proton.me> Co-authored-by: Mateusz <mateuszvx8.96@gmail.com> Co-authored-by: majora2007 <kavitareader@gmail.com> Co-authored-by: 無情天 <kofzhanganguo@126.com>
20 lines
542 B
C#
20 lines
542 B
C#
namespace API.DTOs.Reader;
|
|
|
|
/// <summary>
|
|
/// A range of time to read a selection (series, chapter, etc)
|
|
/// </summary>
|
|
public 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;
|
|
}
|