mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-06-05 14:25:17 -04:00
7ce36bfc44
Co-authored-by: Joseph Milazzo <josephmajora@gmail.com>
12 lines
275 B
C#
12 lines
275 B
C#
namespace API.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; }
|
|
}
|