14 lines
334 B
C#
14 lines
334 B
C#
using MangaReader.Core.Common;
|
|
|
|
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 ContributorRole Role { get; set; }
|
|
} |