Files
SIG-CM2.0/src/api/SIGCM2.Application/Common/IngresosBrutosQuery.cs

12 lines
298 B
C#
Raw Normal View History

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