2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.RequestDtos;
|
2023-12-16 20:25:12 +03:30
|
|
|
|
|
|
|
|
|
|
public class UserActionRequestDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
|
public long BirthDateTimeStamp { get; set; }
|
|
|
|
|
|
public Gender Gender { get; set; }
|
|
|
|
|
|
public string NationalId { get; set; } = string.Empty;
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
public List<Guid> RoleIds { get; set; } = new();
|
|
|
|
|
|
}
|