33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using LSFE.Infrastructure.Entities.Maintenance;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities.Doctor
|
|
{
|
|
public class Doctor : BaseEntity
|
|
{
|
|
public int DoctorId { get; set; }
|
|
public string? MiddleInitial { get; set; }
|
|
public string? LastName { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public byte MaxVisit { get; set; }
|
|
public string? SpecializationName { get; set; }
|
|
public DateTime BirthDate { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public string? LicenseNo { get; set; }
|
|
public string? PhoneNo { get; set; }
|
|
public int InstitutionId { get; set; }
|
|
public string? InstitutionName { get; set; }
|
|
public byte Status { get; set; }
|
|
public bool IsTerritorial { get; set; }
|
|
public bool IsCatchUpCall { get; set; }
|
|
public string? Address { get; set; }
|
|
public string? DistrictName { get; set; }
|
|
public string? AreaName { get; set; }
|
|
public Guid MRRawPlanId { get; set; }
|
|
}
|
|
}
|