0
0
RhSolutions-Api/RhSolutions.QueryModifiers/IProductQueryModifier.cs

9 lines
209 B
C#
Raw Normal View History

2023-10-10 22:26:16 +03:00
using Microsoft.AspNetCore.Http;
namespace RhSolutions.QueryModifiers;
public interface IProductQueryModifier
{
public bool TryQueryModify(IQueryCollection collection, out QueryString queryString);
}