| | | 1 | | namespace WireMock.Admin.Mappings |
| | | 2 | | { |
| | | 3 | | /// <summary> |
| | | 4 | | /// MatcherModel |
| | | 5 | | /// </summary> |
| | | 6 | | public class MatcherModel |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Gets or sets the name. |
| | | 10 | | /// </summary> |
| | 57 | 11 | | public string Name { get; set; } |
| | | 12 | | |
| | | 13 | | /// <summary> |
| | | 14 | | /// Gets or sets the pattern. Can be a string (default) or an object; |
| | | 15 | | /// </summary> |
| | 48 | 16 | | public object Pattern { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets the patterns. Can be array of strings (default) or an array of objects; |
| | | 20 | | /// </summary> |
| | 43 | 21 | | public object[] Patterns { get; set; } |
| | | 22 | | |
| | | 23 | | /// <summary> |
| | | 24 | | /// Gets or sets the ignore case. |
| | | 25 | | /// </summary> |
| | 18 | 26 | | public bool? IgnoreCase { get; set; } |
| | | 27 | | |
| | | 28 | | /// <summary> |
| | | 29 | | /// Reject on match. |
| | | 30 | | /// </summary> |
| | 31 | 31 | | public bool? RejectOnMatch { get; set; } |
| | | 32 | | } |
| | | 33 | | } |