mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-21 15:16:33 -04:00
ba20ad4ecc
Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
15 lines
311 B
C#
15 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; }
|
|
}
|