11 lines
249 B
C#
11 lines
249 B
C#
|
|
using BMA.EHR.Recurit.Exam.Service.Models;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|||
|
|
{
|
|||
|
|
public class ProfileOrganization : EntityBase
|
|||
|
|
{
|
|||
|
|
public Guid? OrganizationId { get; set; }
|
|||
|
|
public Guid? UserId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|