api/NetinaCMS.Domain/Dtos/RequestDtos/UserActionRequestDto.cs

16 lines
595 B
C#
Raw Permalink Normal View History

2024-03-24 12:35:42 +03:30
using NetinaCMS.Domain.Entities.Users;
namespace NetinaCMS.Domain.Dtos.RequestDtos;
2024-03-09 19:53:01 +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();
}