// Copyright © WireMock.Net using System.Collections.Generic; using WireMock.Matchers.Request; namespace WireMock.Admin.Requests; /// /// LogRequestMatchModel /// public class LogRequestMatchModel { /// /// Gets or sets the match-score. /// /// /// The match-score. /// public double TotalScore { get; set; } /// /// Gets or sets the total number of matches. /// /// /// The total number of matches. /// public int TotalNumber { get; set; } /// /// Gets or sets a value indicating whether this instance is perfect match. /// /// /// true if this instance is perfect match; otherwise, false. /// public bool IsPerfectMatch { get; set; } /// /// Gets the match percentage. /// /// /// The match percentage. /// public double AverageTotalScore { get; set; } /// /// Gets the match details. /// /// /// The match details. /// public IList MatchDetails { get; set; } = []; }