12 lines
298 B
C#
12 lines
298 B
C#
using SIGCM2.Domain.Fiscal;
|
|
|
|
namespace SIGCM2.Application.Common;
|
|
|
|
/// <summary>Query parameters for listing ingresos brutos with optional filters and paging.</summary>
|
|
public sealed record IngresosBrutosQuery(
|
|
int Page,
|
|
int PageSize,
|
|
bool? Activo,
|
|
ProvinciaArgentina? Provincia
|
|
);
|