Files
manga-reader/MangaReader.Core/Data/Contributor.cs

9 lines
235 B
C#

namespace MangaReader.Core.Data;
public class Contributor
{
public int ContributorId { get; set; }
public required string Name { get; set; }
public ICollection<MangaContributor> MangaContributions { get; set; } = [];
}