| | | 1 | | namespace WireMock.Admin.Requests |
| | | 2 | | { |
| | | 3 | | /// <summary> |
| | | 4 | | /// LogRequestMatchModel |
| | | 5 | | /// </summary> |
| | | 6 | | public class LogRequestMatchModel |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Gets or sets the match-score. |
| | | 10 | | /// </summary> |
| | | 11 | | /// <value> |
| | | 12 | | /// The match-score. |
| | | 13 | | /// </value> |
| | 0 | 14 | | public double TotalScore { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Gets or sets the total number of matches. |
| | | 18 | | /// </summary> |
| | | 19 | | /// <value> |
| | | 20 | | /// The total number of matches. |
| | | 21 | | /// </value> |
| | 0 | 22 | | public int TotalNumber { get; set; } |
| | | 23 | | |
| | | 24 | | /// <summary> |
| | | 25 | | /// Gets or sets a value indicating whether this instance is perfect match. |
| | | 26 | | /// </summary> |
| | | 27 | | /// <value> |
| | | 28 | | /// <c>true</c> if this instance is perfect match; otherwise, <c>false</c>. |
| | | 29 | | /// </value> |
| | 0 | 30 | | public bool IsPerfectMatch { get; set; } |
| | | 31 | | |
| | | 32 | | /// <summary> |
| | | 33 | | /// Gets the match percentage. |
| | | 34 | | /// </summary> |
| | | 35 | | /// <value> |
| | | 36 | | /// The match percentage. |
| | | 37 | | /// </value> |
| | 0 | 38 | | public double AverageTotalScore { get; set; } |
| | | 39 | | } |
| | | 40 | | } |