mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
31 lines
988 B
C#
31 lines
988 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class ChapterDto
|
|
{
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// Range of chapters. Chapter 2-4 -> "2-4". Chapter 2 -> "2".
|
|
/// </summary>
|
|
public string Range { get; set; }
|
|
/// <summary>
|
|
/// Smallest number of the Range.
|
|
/// </summary>
|
|
public string Number { get; set; }
|
|
public byte[] CoverImage { get; set; }
|
|
/// <summary>
|
|
/// Total number of pages in all MangaFiles
|
|
/// </summary>
|
|
public int Pages { get; set; }
|
|
/// <summary>
|
|
/// The files that represent this Chapter
|
|
/// </summary>
|
|
public ICollection<MangaFileDto> Files { get; set; }
|
|
/// <summary>
|
|
/// Calculated at API time. Number of pages read for this Chapter for logged in user.
|
|
/// </summary>
|
|
public int PagesRead { get; set; }
|
|
public int VolumeId { get; set; }
|
|
}
|
|
} |