Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

21 lines
649 B
C#

using System;
namespace Kavita.Models.DTOs.Progress;
#nullable enable
public sealed record ProgressDto
{
public required int VolumeId { get; set; }
public required int ChapterId { get; set; }
public required int PageNum { get; set; }
public required int SeriesId { get; set; }
public required int LibraryId { get; set; }
/// <summary>
/// For EPUB reader, this can be an optional string of the id of a part marker, to help resume reading position
/// on pages that combine multiple "chapters".
/// </summary>
public string? BookScrollId { get; set; }
public DateTime LastModifiedUtc { get; set; }
}