hrms-api-backend/BMA.EHR.Placement.Service/Requests/ReportPersonRequest.cs

12 lines
263 B
C#
Raw Permalink Normal View History

2024-10-01 23:34:01 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class ReportPersonRequest
{
public string[] refIds { get; set; }
2025-04-05 18:05:04 +07:00
public string? status { get; set; }
2024-10-01 23:34:01 +07:00
}
}