18 lines
497 B
C#
18 lines
497 B
C#
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.HR;
|
|
|
|
namespace BMA.EHR.Domain.Models.Organizations
|
|
{
|
|
/// <summary>
|
|
/// Link Profile กับ OrganizationPosition
|
|
/// </summary>
|
|
public class ProfilePosition : EntityBase
|
|
{
|
|
public OrganizationPositionEntity? OrganizationPosition { get; set; }
|
|
|
|
public Profile? Profile { get; set; }
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
public bool IsPublished { get; set; } = true;
|
|
}
|
|
}
|