Add project files.
This commit is contained in:
11
MangaReader.Core/WebCrawlers/MangaChapterDTO.cs
Normal file
11
MangaReader.Core/WebCrawlers/MangaChapterDTO.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace MangaReader.Core.WebCrawlers;
|
||||
|
||||
public class MangaChapterDTO
|
||||
{
|
||||
public int? Volume { get; set; }
|
||||
public float? Number { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public required string Url { get; set; }
|
||||
public long? Views { get; set; }
|
||||
public DateTime? UploadDate { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user