| | | 1 | | namespace WireMock.Admin.Mappings |
| | | 2 | | { |
| | | 3 | | /// <summary> |
| | | 4 | | /// Body Model |
| | | 5 | | /// </summary> |
| | | 6 | | public class BodyModel |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Gets or sets the matcher. |
| | | 10 | | /// </summary> |
| | | 11 | | /// <value> |
| | | 12 | | /// The matcher. |
| | | 13 | | /// </value> |
| | 10 | 14 | | public MatcherModel Matcher { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Gets or sets the function. |
| | | 18 | | /// </summary> |
| | | 19 | | /// <value> |
| | | 20 | | /// The function. |
| | | 21 | | /// </value> |
| | 0 | 22 | | public string Func { get; set; } |
| | | 23 | | |
| | | 24 | | /// <summary> |
| | | 25 | | /// Gets or sets the data function. |
| | | 26 | | /// </summary> |
| | | 27 | | /// <value> |
| | | 28 | | /// The data function. |
| | | 29 | | /// </value> |
| | 0 | 30 | | public string DataFunc { get; set; } |
| | | 31 | | } |
| | | 32 | | } |