15 lines
392 B
C#
15 lines
392 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; }
|
|
}
|
|
}
|