Kavita/API/DTOs/Progress/ProgressDto.cs
Joe Milazzo a610a057c7
Almost looking at a Mirror (#4341)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2026-01-11 15:50:22 -08:00

21 lines
639 B
C#

using System;
namespace API.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; }
}