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