12 lines
307 B
C#
12 lines
307 B
C#
namespace MangaReader.Core.Data;
|
|
|
|
public class MangaContributor
|
|
{
|
|
public int MangaId { get; set; }
|
|
public required Manga Manga { get; set; }
|
|
|
|
public int ContributorId { get; set; }
|
|
public required Contributor Contributor { get; set; }
|
|
|
|
public MangaContributorRole Role { get; set; }
|
|
} |