MatchDetails (#47)

This commit is contained in:
Stef Heyenrath
2017-09-18 20:45:30 +02:00
parent 139ea77888
commit 881e4b2af3
11 changed files with 53 additions and 44 deletions

View File

@@ -1,4 +1,6 @@
namespace WireMock.Admin.Requests
using System.Collections.Generic;
namespace WireMock.Admin.Requests
{
/// <summary>
/// LogRequestMatchModel
@@ -36,5 +38,13 @@
/// The match percentage.
/// </value>
public double AverageTotalScore { get; set; }
/// <summary>
/// Gets the match details.
/// </summary>
/// <value>
/// The match details.
/// </value>
public IList<object> MatchDetails { get; set; }
}
}