namespace WireMock.Admin.Mappings
{
///
/// Param Model
///
public class ParamModel
{
///
/// Gets or sets the name.
///
public string Name { get; set; }
///
/// Defines if the key should be matched using case-ignore.
///
public bool? IgnoreCase { get; set; }
///
/// Gets or sets the matchers.
///
public MatcherModel[] Matchers { get; set; }
}
}