Fixed a bug where not all detail pages had the same size font. Fixed series detail page not having subtitle as a themeable variable (--detail-subtitle-color).
11 lines
275 B
C#
11 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; }
|
|
}
|