Files
predavanja/Events-WebApi/Events.WebAPI.Contract/Queries/Generic/GetItemsQuery.cs
2026-05-10 23:39:55 +02:00

13 lines
313 B
C#

using MediatR;
namespace Events.WebAPI.Contract.Queries.Generic;
public class GetItemsQuery<TDto> : IRequest<List<TDto>>
{
public string? Filters { get; set; }
public string? Sort { get; set; }
public bool Ascending { get; set; }
public int? PageSize { get; set; }
public int? Page { get; set; }
}