17 lines
569 B
C#
17 lines
569 B
C#
namespace Socialize.Api.Modules.Identity.Models;
|
|
|
|
internal class UserModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Username { get; init; } = null!;
|
|
public string? Alias { get; init; }
|
|
public string? PortraitUrl { get; init; }
|
|
public string? Firstname { get; init; }
|
|
public string? Lastname { get; init; }
|
|
public string? Email { get; init; }
|
|
public string? PhoneNumber { get; init; }
|
|
public DateTime? BirthDate { get; init; }
|
|
public string? Address { get; init; }
|
|
public string PreferredLanguage { get; init; } = "en";
|
|
}
|