Files
WireMock.Net/src/WireMock.Net.Abstractions/Admin/Mappings/HeaderModel.cs
2020-02-22 11:07:45 +01:00

30 lines
696 B
C#

using System.Collections.Generic;
namespace WireMock.Admin.Mappings
{
/// <summary>
/// Header Model
/// </summary>
public class HeaderModel
{
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name { get; set; }
/// <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; }
}
}