16 lines
604 B
C#
16 lines
604 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Hutopy.Infrastructure.Identity;
|
|
|
|
public class ApplicationUser : IdentityUser<Guid>
|
|
{
|
|
[MaxLength(255)] public string? Alias { get; set; }
|
|
[MaxLength(255)] public string? FirstName { get; set; }
|
|
[MaxLength(255)] public string? LastName { get; set; }
|
|
[MaxLength(255)] public string? Occupation { get; set; }
|
|
[MaxLength(255)] public string? BirthDate { get; set; }
|
|
[MaxLength(255)] public string? Address { get; set; }
|
|
[MaxLength(255)] public string? PortraitUrl { get; set; }
|
|
}
|