namespace API.DTOs { public class ProgressDto { public int VolumeId { get; set; } public int ChapterId { get; set; } public int PageNum { get; set; } public int SeriesId { get; set; } /// /// For Book 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". /// public string BookScrollId { get; set; } } }