namespace Modules.User.Domain.Models; public class User { public Guid Id { get; set; } public Account Account { get; set; } = default!; public string NickName { get; set; } = default!; public string? FirstName { get; set; } public string? SecondName { get; set; } public string? LastName { get; set; } public Guid? AvatarId { get; set; } public Guid? LanguageId { get; set; } }