Files
social-media/src/Infrastructure/Identity/ApplicationUser.cs
2024-08-03 04:17:04 -04:00

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; }
}