9 lines
235 B
C#
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; } = [];
|
|
} |