10 lines
251 B
C#
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
|
||
|
|
);
|