mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-23 01:50:36 +01:00
* Create new project for GraphQL * ... * . * ok? * Update src/WireMock.Net.Shared/Extensions/AnyOfExtensions.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * -- * ... --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
13 lines
291 B
C#
13 lines
291 B
C#
// Copyright © WireMock.Net
|
|
|
|
using WireMock.Matchers.Request;
|
|
|
|
namespace WireMock.RequestBuilders;
|
|
|
|
/// <summary>
|
|
/// IRequestBuilder
|
|
/// </summary>
|
|
public interface IRequestBuilder : IClientIPRequestBuilder
|
|
{
|
|
public IRequestBuilder Add<T>(T requestMatcher) where T : IRequestMatcher;
|
|
} |