using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Dto.Doctor { public class DoctorDto { public int DoctorId { get; set; } = 0; public string? MiddleInitial { get; set; } public string? LastName { get; set; } public string? FirstName { get; set; } public string? Company { get; set; } public byte MaxVisit { get; set; } public string? UserId { get; set; } public byte StageLevelId { get; set; } public DateTime? BirthDate { get; set; } public string? EmailAddress { get; set; } public int InstitutionId { get; set; } public byte Status { get; set; } public bool IsActive { get; set; } public string? PhoneNo { get; set; } = "N/A"; public string? MedRepName { get; set; } public byte SpecializationId { get; set; } public string? SpecializationName { get; set; } public string? LicenseNo { get; set; } public string? Address { get; set; } public string? InstitutionName { get; set; } public int? DistrictId { get; set; } public string? DistrictName { get; set; } public string? MRPlanDate { get; set; } public bool IsTerritorial { get; set; } public bool IsPlanning { get; set; } public bool IsCatchUpCall { get; set; }=false; public string? UserName { get; set; } public string? UpdatedBy { get; set; } } }