14 lines
556 B
C#
14 lines
556 B
C#
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<Guid> RoleIds { get; set; } = new();
|
|
} |