mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 20:42:53 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
12 lines
285 B
C#
12 lines
285 B
C#
namespace Kavita.Models.Entities.Person;
|
|
|
|
public class PersonAlias
|
|
{
|
|
public int Id { get; set; }
|
|
public required string Alias { get; set; }
|
|
public required string NormalizedAlias { get; set; }
|
|
|
|
public int PersonId { get; set; }
|
|
public Person Person { get; set; }
|
|
}
|