Files
WireMock.Net-wiremock/src/WireMock.Net.Abstractions/Matchers/Request/MatchDetail.cs
Stef Heyenrath aff936e3b6 Refactor: extract interfaces (#484)
* .

* MatchDetail

* rm

* resp

* log

* f
2020-07-05 10:51:49 +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; }
}
}