hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileOrganization.cs

14 lines
391 B
C#
Raw Normal View History

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