feat(adm-009): ITipoDeIvaRepository + IIngresosBrutosRepository abstractions
This commit is contained in:
11
src/api/SIGCM2.Application/Common/IngresosBrutosQuery.cs
Normal file
11
src/api/SIGCM2.Application/Common/IngresosBrutosQuery.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
);
|
||||
Reference in New Issue
Block a user