mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Refactored the performance of GetChapter/BookInfo API to have a 10x speed improvement and to use common code, rather than duplicating code. Removed an api param that is no longer needed. * Book reader now has dedicated buttons to jump to next/prev chapter as well as through page buttons
22 lines
634 B
C#
22 lines
634 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Reader
|
|
{
|
|
public class ChapterInfoDto : IChapterInfoDto
|
|
{
|
|
|
|
public string ChapterNumber { get; set; }
|
|
public string VolumeNumber { get; set; }
|
|
public int VolumeId { get; set; }
|
|
public string SeriesName { get; set; }
|
|
public MangaFormat SeriesFormat { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int LibraryId { get; set; }
|
|
public string ChapterTitle { get; set; } = "";
|
|
public int Pages { get; set; }
|
|
public string FileName { get; set; }
|
|
public bool IsSpecial { get; set; }
|
|
|
|
}
|
|
}
|