21 lines
885 B
C#
21 lines
885 B
C#
using Hutopy.Infrastructure.Identity.OwnedEntities;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Hutopy.Infrastructure.Identity;
|
|
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string LastName { get; set; } = string.Empty;
|
|
public string Occupation { get; set; } = string.Empty;
|
|
public string BirthDate { get; set; } = string.Empty;
|
|
public string Country { get; set; } = string.Empty;
|
|
public string City { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public string About { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public SocialNetworks SocialNetworks { get; set; } = new();
|
|
public ProfileColors ProfileColors { get; set; } = new();
|
|
public StoredDataUrls StoredDataUrls { get; set; } = new();
|
|
}
|