Kavita/Kavita.Models/DTOs/Reader/MarkVolumeReadDto.cs
2026-03-19 15:13:24 -07:00

13 lines
391 B
C#

namespace Kavita.Models.DTOs.Reader;
public sealed record MarkVolumeReadDto
{
public int SeriesId { get; init; }
public int VolumeId { get; init; }
/// <summary>
/// If true, generates a new reading session for the user. Based on the estimated time from the current progress
/// till the end
/// </summary>
public bool GenerateReadingSession { get; init; }
}