Files
WireMock.Net/src/WireMock.Net/Matchers/Request/MatchDetail.cs
Stef Heyenrath 5b8b588983 Fix CompareTo in RequestMatchResult (#345)
* Fix CompareTo in RequestMatchResult
#344

* fix test
2019-09-17 14:50:43 +02:00

11 lines
187 B
C#

using System;
namespace WireMock.Matchers.Request
{
public class MatchDetail
{
public Type MatcherType { get; set; }
public double Score { get; set; }
}
}