16 lines
347 B
C#
16 lines
347 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AMWD.Net.Api.Cloudflare
|
|
{
|
|
/// <summary>
|
|
/// Represents filter options defined via query parameters.
|
|
/// </summary>
|
|
public interface IQueryParameterFilter
|
|
{
|
|
/// <summary>
|
|
/// Gets the query parameters.
|
|
/// </summary>
|
|
IDictionary<string, string> GetQueryParameters();
|
|
}
|
|
}
|