29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
{
|
|
public class ProfileJsonRequest
|
|
{
|
|
public int order { get; set; }
|
|
public Guid id { get; set; }
|
|
public string reason { get; set; }
|
|
public string remove { get; set; }
|
|
public Guid profileId { get; set; }
|
|
public string? citizenId { get; set; }
|
|
public string? prefix { get; set; }
|
|
public string? fullName { get; set; }
|
|
public string? organizationOrganization { get; set; }
|
|
public string? oc { get; set; }
|
|
public string? position { get; set; }
|
|
public string? positionType { get; set; }
|
|
public string? positionExecutive { get; set; }
|
|
public string? posNo { get; set; }
|
|
public string? positionEmployeePosition { get; set; }
|
|
public string? positionEmployeeLevel { get; set; }
|
|
public string? positionEmployeeGroup { get; set; }
|
|
public string? posNoEmployee { get; set; }
|
|
public string? organizationAgency { get; set; }
|
|
public string? organizationGovernmentAgency { get; set; }
|
|
}
|
|
}
|