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; } } }