api/HiVakil.Domain/Dtos/RequestDto/UserActionRequestDto.cs

14 lines
552 B
C#
Raw Normal View History

2024-02-26 12:37:42 +03:30
namespace HiVakil.Domain.Dtos.RequestDto;
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();
}