namespace NetinaShop.Domain.Dtos.RequestDtos; 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 RoleIds { get; set; } = new(); }