17 lines
417 B
C#
17 lines
417 B
C#
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; }
|
|
}
|