| | | 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> |
| | | 11 | | /// <value> |
| | | 12 | | /// The name. |
| | | 13 | | /// </value> |
| | 12 | 14 | | public string Name { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Gets or sets the pattern. |
| | | 18 | | /// </summary> |
| | | 19 | | /// <value> |
| | | 20 | | /// The pattern. |
| | | 21 | | /// </value> |
| | 12 | 22 | | public string Pattern { get; set; } |
| | | 23 | | |
| | | 24 | | /// <summary> |
| | | 25 | | /// Gets or sets the patterns. |
| | | 26 | | /// </summary> |
| | | 27 | | /// <value> |
| | | 28 | | /// The patterns. |
| | | 29 | | /// </value> |
| | 6 | 30 | | public string[] Patterns { get; set; } |
| | | 31 | | |
| | | 32 | | /// <summary> |
| | | 33 | | /// Gets or sets the ignore case. |
| | | 34 | | /// </summary> |
| | | 35 | | /// <value> |
| | | 36 | | /// The ignore case. |
| | | 37 | | /// </value> |
| | 2 | 38 | | public bool? IgnoreCase { get; set; } |
| | | 39 | | } |
| | | 40 | | } |