Kavita/API/DTOs/Reader/BookInfoDto.cs
2025-05-04 07:14:44 -07:00

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! ;
}