Files
WireMock.Net-wiremock/src/WireMock.Net/Matchers/IValueMatcher.cs
2021-08-04 16:22:22 +02:00

15 lines
381 B
C#

namespace WireMock.Matchers
{
/// <summary>
/// IValueMatcher
/// </summary>
/// <seealso cref="IObjectMatcher" />
public interface IValueMatcher : IObjectMatcher
{
/// <summary>
/// Gets the value (can be a string or an object).
/// </summary>
/// <returns>Value</returns>
object Value { get; }
}
}