Added contributor classes for manga. Implemented MangaDex search.
This commit is contained in:
9
MangaReader.Core/Data/Contributor.cs
Normal file
9
MangaReader.Core/Data/Contributor.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace MangaReader.Core.Data;
|
||||
|
||||
public class Contributor
|
||||
{
|
||||
public int ContributorId { get; set; }
|
||||
public required string Name { get; set; }
|
||||
|
||||
public ICollection<MangaContributor> MangaContributions { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user