
Some notes is that magazines in reading list mode do not properly load up. Parsing code still needs some work. Need to restrict to really just a small set of conventions until community can give me real data to code against.
19 lines
564 B
C#
19 lines
564 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Reader;
|
|
|
|
public interface IChapterInfoDto
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int VolumeId { get; set; }
|
|
public MangaFormat SeriesFormat { get; set; }
|
|
public string SeriesName { get; set; }
|
|
public string ChapterNumber { get; set; }
|
|
public string VolumeNumber { get; set; }
|
|
public int LibraryId { get; set; }
|
|
public int Pages { get; set; }
|
|
public bool IsSpecial { get; set; }
|
|
public string ChapterTitle { get; set; }
|
|
public LibraryType LibraryType { get; set; }
|
|
|
|
}
|