2023-09-18 09:45:02 +03:30
|
|
|
|
using Brizco.Domain.Entities.Complex;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class ComplexUserSDto : BaseDto<ComplexUserSDto,ComplexUser>
|
|
|
|
|
|
{
|
2023-10-13 16:25:34 +03:30
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
2023-10-24 15:36:09 +03:30
|
|
|
|
public string NationalId { get; set; } = string.Empty;
|
2023-10-13 16:25:34 +03:30
|
|
|
|
public string ComplexName { get; set; } = string.Empty;
|
2023-10-24 15:36:09 +03:30
|
|
|
|
public List<string> RoleNames { get; set; } = new();
|
2023-09-18 09:45:02 +03:30
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
public Guid ComplexId { get; set; }
|
|
|
|
|
|
}
|