using System; namespace WireMock.Matchers.Request { /// /// MatchDetail /// public class MatchDetail { /// /// Gets or sets the type of the matcher. /// public Type MatcherType { get; set; } /// /// Gets or sets the score between 0.0 and 1.0 /// public double Score { get; set; } } }