Adds user Alias. Make StoredDataUrls optionals.
This commit is contained in:
@@ -5,8 +5,9 @@ namespace Hutopy.Infrastructure.Identity;
|
||||
|
||||
public class ApplicationUser : IdentityUser
|
||||
{
|
||||
public string FirstName { get; set; } = string.Empty;
|
||||
public string LastName { get; set; } = string.Empty;
|
||||
public string? Alias { get; set; }
|
||||
public required string FirstName { get; set; }
|
||||
public required string LastName { get; set; }
|
||||
public string? CreatorAlias { get; set; }
|
||||
public string Occupation { get; set; } = string.Empty;
|
||||
public string BirthDate { get; set; } = string.Empty;
|
||||
|
||||
Reference in New Issue
Block a user