Commit d8ab4f33 authored by Almouhannad's avatar Almouhannad

(B) Add Doctor entity

parent 1bf64e2a
using Domain.Entities.People.Doctors.Shared;
using Domain.Entities.People.Doctors.Shared.Constants.DoctorStatusValues;
using Domain.Entities.People.Shared;
using Domain.Primitives;
namespace Domain.Entities.People.Doctors;
public sealed class Doctor(int id) : Entity(id)
{
#region Properties
public PersonalInfo PersonalInfo { get; set; } = null!;
public DoctorStatus Status { get; set; } = null!;
#region Navigations
public ICollection<DoctorPhone> Phones { get; set; } = [];
#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