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