11 lines
264 B
C#
11 lines
264 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; }
|
|
}
|
|
}
|