Added MangaDex Api. Updated project structure.
This commit is contained in:
12
MangaReader.Core/Sources/MangaDex/Api/CoverArtAttributes.cs
Normal file
12
MangaReader.Core/Sources/MangaDex/Api/CoverArtAttributes.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace MangaReader.Core.Sources.MangaDex.Api;
|
||||
|
||||
public class CoverArtAttributes
|
||||
{
|
||||
public string? Description { get; set; }
|
||||
public string? Volume { get; set; }
|
||||
public required string FileName { get; set; }
|
||||
public string? Locale { get; set; }
|
||||
public DateTime? CreatedAt { get; set; }
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
public int Version { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user