mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-18 08:17:43 +01:00
29 lines
656 B
C#
29 lines
656 B
C#
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// MatcherModel
|
|
/// </summary>
|
|
public class MatcherModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the pattern.
|
|
/// </summary>
|
|
public string Pattern { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the patterns.
|
|
/// </summary>
|
|
public string[] Patterns { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ignore case.
|
|
/// </summary>
|
|
public bool? IgnoreCase { get; set; }
|
|
}
|
|
}
|