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

20 lines
513 B
C#
Raw Permalink Normal View History

2024-10-04 15:36:34 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.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-04 15:36:34 +07:00
}
public class ReportPersonAndCommandRequest
{
public string[] refIds { get; set; }
public string? status { get; set; }
public string? commandTypeId { get; set; }
public string? commandCode { get; set; }
}
2024-10-04 15:36:34 +07:00
}