9 lines
209 B
C#
9 lines
209 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace RhSolutions.QueryModifiers;
|
|
|
|
public interface IProductQueryModifier
|
|
{
|
|
public bool TryQueryModify(IQueryCollection collection, out QueryString queryString);
|
|
}
|