mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-21 16:27:48 +01:00
* WithDescription * WithConsumer / WithProvider * x * . * . * . * . * fix * pact * nullable * ficx * . * fix
31 lines
743 B
C#
31 lines
743 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// Header Model
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class HeaderModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the matchers.
|
|
/// </summary>
|
|
public IList<MatcherModel>? Matchers { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ignore case.
|
|
/// </summary>
|
|
public bool? IgnoreCase { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reject on match.
|
|
/// </summary>
|
|
public bool? RejectOnMatch { get; set; }
|
|
}
|
|
} |