mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 23:26:52 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Admin.Requests
|
|
{
|
|
/// <summary>
|
|
/// LogRequestMatchModel
|
|
/// </summary>
|
|
public class LogRequestMatchModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the match-score.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The match-score.
|
|
/// </value>
|
|
public double TotalScore { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the total number of matches.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The total number of matches.
|
|
/// </value>
|
|
public int TotalNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this instance is perfect match.
|
|
/// </summary>
|
|
/// <value>
|
|
/// <c>true</c> if this instance is perfect match; otherwise, <c>false</c>.
|
|
/// </value>
|
|
public bool IsPerfectMatch { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets the match percentage.
|
|
/// </summary>
|
|
/// <value>
|
|
/// 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; }
|
|
}
|
|
} |