LSFE/LSFE.MobApp/DTO/DoctorDto/DoctorWithInstitution.cs
2026-07-30 10:31:04 +08:00

21 lines
597 B
C#

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; }
}
}