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

12 lines
264 B
C#
Raw Permalink Normal View History

2024-10-02 15:14:37 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.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-02 15:14:37 +07:00
}
}