mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-21 00:08:05 +01:00
11 lines
187 B
C#
11 lines
187 B
C#
using System;
|
|
|
|
namespace WireMock.Matchers.Request
|
|
{
|
|
public class MatchDetail
|
|
{
|
|
public Type MatcherType { get; set; }
|
|
|
|
public double Score { get; set; }
|
|
}
|
|
} |