LSFE/LSFE.Infrastructure/Dto/Doctor/ForDoctorApprovalDto.cs
2026-07-30 10:31:04 +08:00

34 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto.Doctor
{
public class ForDoctorApprovalDto
{
public Guid ForDoctorApprovalId { get; set; }
public int DoctorId { get; set; }
public string? FirstName { get; set; }
public string? MiddleInitial { get; set; }
public string? LastName { get; set; }
public string? EmailAddress { get; set; }
public string? PhoneNo { get; set; }
public byte SpecializationId { get; set; }
public string? LicenseNo { get; set; }
public string? Address { get; set; }
public DateTime? BirthDate { get; set; }
public byte MaxVisit { get; set; }
public byte Status { get; set; }
public int InstitutionId { get; set; }
public string? InstitutionName { get; set; }
public int? DistrictId { get; set; }
public string? DistrictName { get; set; }
public string? UserId { get; set; }
public byte StageLevelId { get; set; }
public bool IsTerritorial { get; set; }
public string? MedRepName { get; set; }
}
}