// Copyright © WireMock.Net #pragma warning disable CS1591 namespace WireMock.Pact.Models.V2; public class MatchingRule { /// /// type or regex /// public string Match { get; set; } = "type"; /// /// Used for Match = "type" /// public string Min { get; set; } /// /// Used for Match = "type" /// public string Max { get; set; } /// /// Used for Match = "regex" /// public string Regex { get; set; } }