using BMA.EHR.Domain.Models.Base; using BMA.EHR.Domain.Models.HR; using BMA.EHR.Domain.Models.MetaData; using BMA.EHR.Domain.Models.Organizations; namespace BMA.EHR.Domain.Models.OrganizationEmployee { public class OrganizationEmployeeProfile : EntityBase { public Profile Profile { get; set; } public OrgEmployee OrgEmployee { get; set; } public string Status { get; set; } } }