namespace WireMock.Matchers.Request
{
///
/// RequestMatchResult
///
public class RequestMatchResult
{
///
/// Gets or sets the number of matches.
///
///
/// The number of matches.
///
public int Matched { get; set; }
///
/// Gets or sets the total number of matches.
///
///
/// The total number of matches.
///
public int Total { get; set; }
///
/// Gets or sets a value indicating whether this instance is perfect match.
///
///
/// true if this instance is perfect match; otherwise, false.
///
public bool IsPerfectMatch { get; set; }
}
}