mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 07:13:46 +01:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
27 lines
554 B
C#
27 lines
554 B
C#
// Copyright © WireMock.Net
|
|
|
|
#pragma warning disable CS1591
|
|
namespace WireMock.Pact.Models.V2;
|
|
|
|
public class MatchingRule
|
|
{
|
|
/// <summary>
|
|
/// type or regex
|
|
/// </summary>
|
|
public string Match { get; set; } = "type";
|
|
|
|
/// <summary>
|
|
/// Used for Match = "type"
|
|
/// </summary>
|
|
public string Min { get; set; }
|
|
|
|
/// <summary>
|
|
/// Used for Match = "type"
|
|
/// </summary>
|
|
public string Max { get; set; }
|
|
|
|
/// <summary>
|
|
/// Used for Match = "regex"
|
|
/// </summary>
|
|
public string Regex { get; set; }
|
|
} |