Adds edition of user profile
This commit is contained in:
@@ -6,10 +6,9 @@ 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? 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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user