Added MangaDex Api. Updated project structure.
This commit is contained in:
24
MangaReader.Core/Sources/MangaDex/Api/PersonAttributes.cs
Normal file
24
MangaReader.Core/Sources/MangaDex/Api/PersonAttributes.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace MangaReader.Core.Sources.MangaDex.Api;
|
||||
|
||||
public class PersonAttributes
|
||||
{
|
||||
public string? ImageUrl { get; set; }
|
||||
public Dictionary<string, string> Biography { get; set; } = [];
|
||||
public string? Twitter { get; set; }
|
||||
public string? Pixiv { get; set; }
|
||||
public string? MelonBook { get; set; }
|
||||
public string? Fanbox { get; set; }
|
||||
public string? Booth { get; set; }
|
||||
public string? Namicomi { get; set; }
|
||||
public string? NicoVideo { get; set; }
|
||||
public string? Skeb { get; set; }
|
||||
public string? Fantia { get; set; }
|
||||
public string? Tumblr { get; set; }
|
||||
public string? Youtube { get; set; }
|
||||
public string? Weibo { get; set; }
|
||||
public string? Naver { get; set; }
|
||||
public string? Website { get; set; }
|
||||
public DateTime? CreatedAt { get; set; }
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
public int Version { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user