13 lines
382 B
C#
13 lines
382 B
C#
using BMA.EHR.Domain.Models.Base;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
|
{
|
|
public class ProfileOrganization : EntityBase
|
|
{
|
|
[Comment("Id หน่วยงานที่สังกัด")]
|
|
public Guid? OrganizationId { get; set; }
|
|
[Comment("User Id KeyCloak")]
|
|
public Guid? UserId { get; set; }
|
|
}
|
|
}
|