namespace API.DTOs
{
public class InProgressChapterDto
{
public int Id { get; init; }
///
/// Range of chapters. Chapter 2-4 -> "2-4". Chapter 2 -> "2".
///
public string Range { get; init; }
///
/// Smallest number of the Range.
///
public string Number { get; init; }
///
/// Total number of pages in all MangaFiles
///
public int Pages { get; init; }
public int SeriesId { get; init; }
public int LibraryId { get; init; }
public string SeriesName { get; init; }
public int VolumeId { get; init; }
}
}