namespace WireMock.Admin.Mappings { /// /// MatcherModel /// public class MatcherModel { /// /// Gets or sets the name. /// public string Name { get; set; } /// /// Gets or sets the pattern. Can be a string (default) or an object; /// public object Pattern { get; set; } /// /// Gets or sets the patterns. Can be array of strings (default) or an array of objects; /// public object[] Patterns { get; set; } /// /// Gets or sets the ignore case. /// public bool? IgnoreCase { get; set; } /// /// Reject on match. /// public bool? RejectOnMatch { get; set; } } }