mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-25 10:52:52 +01:00
16 lines
366 B
C#
16 lines
366 B
C#
namespace WireMock.Server
|
|
{
|
|
/// <summary>
|
|
/// IRespondWithAProvider
|
|
/// </summary>
|
|
public interface IRespondWithAProvider
|
|
{
|
|
/// <summary>
|
|
/// The respond with.
|
|
/// </summary>
|
|
/// <param name="provider">
|
|
/// The provider.
|
|
/// </param>
|
|
void RespondWith(IProvideResponses provider);
|
|
}
|
|
} |