| | | 1 | | using System.Collections.Generic; |
| | | 2 | | |
| | | 3 | | namespace WireMock.Admin.Mappings |
| | | 4 | | { |
| | | 5 | | /// <summary> |
| | | 6 | | /// Header Model |
| | | 7 | | /// </summary> |
| | | 8 | | public class HeaderModel |
| | | 9 | | { |
| | | 10 | | /// <summary> |
| | | 11 | | /// Gets or sets the name. |
| | | 12 | | /// </summary> |
| | | 13 | | /// <value> |
| | | 14 | | /// The name. |
| | | 15 | | /// </value> |
| | 0 | 16 | | public string Name { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets the matchers. |
| | | 20 | | /// </summary> |
| | | 21 | | /// <value> |
| | | 22 | | /// The matchers. |
| | | 23 | | /// </value> |
| | 0 | 24 | | public IList<MatcherModel> Matchers { get; set; } |
| | | 25 | | |
| | | 26 | | /// <summary> |
| | | 27 | | /// Gets or sets the functions. |
| | | 28 | | /// </summary> |
| | | 29 | | /// <value> |
| | | 30 | | /// The functions. |
| | | 31 | | /// </value> |
| | 0 | 32 | | public string[] Funcs { get; set; } |
| | | 33 | | } |
| | | 34 | | } |