14 lines
603 B
C#
14 lines
603 B
C#
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;
|
|
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; }
|
|
} |