namespace WireMock.Matchers { /// /// IValueMatcher /// /// public interface IValueMatcher: IObjectMatcher { /// /// Gets the value (can be a string or an obejct). /// /// Value object Value { get; } } }