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

10 lines
251 B
C#

namespace SIGCM2.Application.Common;
/// <summary>Query parameters for listing puntos de venta with optional filters and paging.</summary>
public sealed record PuntosDeVentaQuery(
int Page,
int PageSize,
int? MedioId,
bool? Activo
);