10 lines
231 B
C#
10 lines
231 B
C#
|
|
namespace SIGCM2.Application.Secciones.List;
|
||
|
|
|
||
|
|
public sealed record ListSeccionesQuery(
|
||
|
|
int Page = 1,
|
||
|
|
int PageSize = 20,
|
||
|
|
int? MedioId = null,
|
||
|
|
string? Tipo = null,
|
||
|
|
bool? Activo = true,
|
||
|
|
string? Search = null);
|