mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-21 16:27:48 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
23 lines
556 B
C#
23 lines
556 B
C#
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// Param Model
|
|
/// </summary>
|
|
public class ParamModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines if the key should be matched using case-ignore.
|
|
/// </summary>
|
|
public bool? IgnoreCase { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the matchers.
|
|
/// </summary>
|
|
public MatcherModel[] Matchers { get; set; }
|
|
}
|
|
} |