hrms-api-backend/BMA.EHR.Placement.Service/Requests/ReportExecutePlacementAppointRequest.cs
2025-02-05 17:48:58 +07:00

27 lines
955 B
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class ReportExecutePlacementAppointRequest
{
public ReportExecutePlacementAppointRequestObj[] profileEmps { get; set; }
}
public class ReportExecutePlacementAppointRequestObj
{
public string? profileId { get; set; }
public string? prefix { get; set; }
public string? firstName { get; set; }
public string? lastName { get; set; }
public string? citizenId { get; set; }
public string? root { get; set; }
public string? rootId { get; set; }
public string? rootShortName { get; set; }
public string? rootDnaId { get; set; }
public string? child1DnaId { get; set; }
public string? child2DnaId { get; set; }
public string? child3DnaId { get; set; }
public string? child4DnaId { get; set; }
}
}