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; } public DateTime? BirthDate { get; set; } [MaxLength(255)] public string? Address { get; set; } [MaxLength(255)] public string? PortraitUrl { get; set; } [MaxLength(255)] public string? GoogleId { get; set; } }