using System.ComponentModel.DataAnnotations; using Microsoft.AspNetCore.Identity; namespace Hutopy.Infrastructure.Identity; public class ApplicationUser : IdentityUser { [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; } }