All checks were successful
Build & Deploy Discipline Service / build (push) Successful in 1m56s
19 lines
513 B
C#
19 lines
513 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
{
|
|
public class ReportPersonRequest
|
|
{
|
|
public string[] refIds { get; set; }
|
|
public string? status { get; set; }
|
|
}
|
|
|
|
public class ReportPersonAndCommandRequest
|
|
{
|
|
public string[] refIds { get; set; }
|
|
public string? status { get; set; }
|
|
public string? commandTypeId { get; set; }
|
|
public string? commandCode { get; set; }
|
|
}
|
|
}
|