mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 00:03:48 +01:00
17 lines
317 B
C#
17 lines
317 B
C#
namespace WireMock.Matchers;
|
|
|
|
/// <summary>
|
|
/// IMatcher
|
|
/// </summary>
|
|
public interface IMatcher
|
|
{
|
|
/// <summary>
|
|
/// Gets the name.
|
|
/// </summary>
|
|
string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the match behaviour.
|
|
/// </summary>
|
|
MatchBehaviour MatchBehaviour { get; }
|
|
} |