Commit ef4807f3 authored by Almouhannad's avatar Almouhannad

(B) Add waiting list recode entity

parent d8ab4f33
using Domain.Entities.People.Doctors;
using Domain.Entities.People.Patients;
using Domain.Primitives;
namespace Domain.Entities.WaitingList;
public sealed class WaitingListRecord(int id) : Entity(id)
{
#region Properties
#region Patient
public int PatientId { get; set; }
public Patient Patient { get; set; } = null!;
#endregion
#region Doctor
public int? DoctorId { get; set; }
public Doctor? Doctor { get; set; }
#endregion
#region Additional
public bool IsServed { get; set; } = false;
#endregion
#endregion
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment