mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 20:54:12 -04:00
19 lines
639 B
C#
19 lines
639 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Reader;
|
|
|
|
public sealed record BookInfoDto : IChapterInfoDto
|
|
{
|
|
public string BookTitle { get; set; } = default! ;
|
|
public int SeriesId { get; set; }
|
|
public int VolumeId { get; set; }
|
|
public MangaFormat SeriesFormat { get; set; }
|
|
public string SeriesName { get; set; } = default! ;
|
|
public string ChapterNumber { get; set; } = default! ;
|
|
public string VolumeNumber { get; set; } = default! ;
|
|
public int LibraryId { get; set; }
|
|
public int Pages { get; set; }
|
|
public bool IsSpecial { get; set; }
|
|
public string ChapterTitle { get; set; } = default! ;
|
|
}
|