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; } }