using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.MobApp.DTO.DoctorDto { public class DoctorWithInstitution { public int DoctorId { get; set; } public string? DoctorName { get; set; } public string? Specialization { get; set; } public int InstitutionId { get; set; } public string? InstitutionName { get; set; } public bool IsActive { get; set; } public DateTime CreatedDate { get; set; } public string? TerritoryName { get; set; } } }