using System.Collections.Generic; namespace WireMock.Admin.Mappings { /// /// Header Model /// [FluentBuilder.AutoGenerateBuilder] public class HeaderModel { /// /// Gets or sets the name. /// public string Name { get; set; } = null!; /// /// Gets or sets the matchers. /// public IList? Matchers { get; set; } /// /// Gets or sets the ignore case. /// public bool? IgnoreCase { get; set; } /// /// Reject on match. /// public bool? RejectOnMatch { get; set; } } }