2023-10-19 21:28:09 +03:30
|
|
|
|
namespace DocuMed.Domain.Dtos.RequestDtos;
|
|
|
|
|
|
public class UserActionRequestDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime BirthDate { get; set; }
|
|
|
|
|
|
public Gender Gender { get; set; }
|
|
|
|
|
|
public string NationalId { get; set; } = string.Empty;
|
2023-10-22 15:51:11 +03:30
|
|
|
|
public string StudentId { get; set; } = string.Empty;
|
2023-10-19 21:28:09 +03:30
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
public Guid RoleId { get; set; } = new();
|
|
|
|
|
|
public string RoleName { get; set; } = string.Empty;
|
|
|
|
|
|
public Guid UniversityId { get; set; }
|
2023-10-22 15:51:11 +03:30
|
|
|
|
public Guid SectionId { get; set; }
|
2025-04-29 10:58:16 +03:30
|
|
|
|
public Guid HospitalId { get; set; }
|
|
|
|
|
|
public ProfileType ProfileType { get; set; }
|
2023-10-19 21:28:09 +03:30
|
|
|
|
}
|