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
|
|
|
}
|
2026-04-03 16:03:01 +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
|
|
|
}
|