18 lines
473 B
C#
18 lines
473 B
C#
namespace Modules.User.Application.Models;
|
|
|
|
public class UserProfile
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public string? NickName { get; set; } = null!;
|
|
public string? FirstName { get; set; }
|
|
public string? Patronymic { get; set; }
|
|
public string? LastName { get; set; }
|
|
// public DateOnly? BirthDate { get; set; }
|
|
|
|
//public Guid? AvatarId { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public BanStatus? BanStatus { get; init; }
|
|
}
|