16 lines
618 B
C#
16 lines
618 B
C#
namespace MangaReader.Core.WebCrawlers;
|
|
|
|
public class MangaDTO
|
|
{
|
|
public required string Title { get; set; }
|
|
public string? Description { get; set; }
|
|
public List<string> AlternateTitles { get; set; } = [];
|
|
public List<string> Authors { get; set; } = [];
|
|
public MangaStatus Status { get; set; } = MangaStatus.Unknown;
|
|
public List<string> Genres { get; set; } = [];
|
|
public DateTime? UpdateDate { get; set; }
|
|
public long? Views { get; set; }
|
|
public float? RatingPercent { get; set; }
|
|
public int? Votes { get; set; }
|
|
public List<MangaChapterDTO> Chapters { get; set; } = [];
|
|
} |