Add project files.
This commit is contained in:
16
MangaReader.Core/WebCrawlers/MangaDTO.cs
Normal file
16
MangaReader.Core/WebCrawlers/MangaDTO.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user