mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-06-15 01:54:30 +02:00
54edf0bebc
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
30 lines
699 B
C#
30 lines
699 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Admin.Mappings;
|
|
|
|
/// <summary>
|
|
/// Param Model
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class ParamModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Defines if the key should be matched using case-ignore.
|
|
/// </summary>
|
|
public bool? IgnoreCase { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Reject on match for the Param Name.
|
|
/// </summary>
|
|
public bool? RejectOnMatch { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the matchers.
|
|
/// </summary>
|
|
public MatcherModel[]? Matchers { get; set; }
|
|
} |