Kavita/API/Entities/Person/ChapterPeople.cs
Joe Milazzo ba20ad4ecc
New Scanner + People Pages (#3286)
Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
2024-10-23 15:11:18 -07:00

14 lines
311 B
C#

using API.Entities.Enums;
namespace API.Entities;
public class ChapterPeople
{
public int ChapterId { get; set; }
public virtual Chapter Chapter { get; set; }
public int PersonId { get; set; }
public virtual Person Person { get; set; }
public required PersonRole Role { get; set; }
}