namespace WireMock.Matchers
{
///
/// IMatcher
///
public interface IMatcher
{
///
/// Determines whether the specified input is match.
///
/// The input.
///
/// true if the specified input is match; otherwise, false.
///
bool IsMatch(string input);
}
}