mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-02 07:14:30 -04:00
14 lines
391 B
C#
14 lines
391 B
C#
namespace Kavita.Models.DTOs.Reader;
|
|
|
|
public sealed record MarkChapterReadDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int ChapterId { 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; }
|
|
}
|