| | | 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> |
| | 33 | 11 | | public string Name { get; set; } |
| | | 12 | | |
| | | 13 | | /// <summary> |
| | | 14 | | /// Gets or sets the pattern. |
| | | 15 | | /// </summary> |
| | 27 | 16 | | public string Pattern { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets the patterns. |
| | | 20 | | /// </summary> |
| | 23 | 21 | | public string[] Patterns { get; set; } |
| | | 22 | | |
| | | 23 | | /// <summary> |
| | | 24 | | /// Gets or sets the ignore case. |
| | | 25 | | /// </summary> |
| | 12 | 26 | | public bool? IgnoreCase { get; set; } |
| | | 27 | | } |
| | | 28 | | } |