2023-06-26 14:55:54 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
2023-06-26 14:02:04 +07:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
2023-06-26 15:18:39 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
2023-06-26 14:02:04 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class ProfileOrganization : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Comment("Id หน่วยงานที่สังกัด")]
|
|
|
|
|
|
public Guid? OrganizationId { get; set; }
|
|
|
|
|
|
[Comment("User Id KeyCloak")]
|
|
|
|
|
|
public Guid? UserId { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|