summaryrefslogtreecommitdiff
path: root/RhSolutions.QueryModifiers/IProductQueryModifier.cs
blob: 508aba5e0e19b4605c111787150602fa3c420a1c (plain)
1
2
3
4
5
6
7
8
using Microsoft.AspNetCore.Http;

namespace RhSolutions.QueryModifiers;

public interface IProductQueryModifier
{
    public bool TryQueryModify(IQueryCollection collection, out QueryString queryString);
}