28 lines
837 B
C#
28 lines
837 B
C#
namespace Modules.User.Application.Models;
|
|
|
|
public class UserDetail
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public Guid? AccountId { get; set; }
|
|
// public Guid? SessionId { 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 Guid? LanguageId { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public bool IsAuthenticated { get; set; } = false;
|
|
|
|
// public ClientInfo? ClientInfo { get; set; }
|
|
|
|
public BanStatus BanStatus { get; init; } = null!;
|
|
|
|
public IEnumerable<int> RoleIds { get; init; } = [];
|
|
public IEnumerable<int> PermissionIds { get; init; } = [];
|
|
}
|