| | | 1 | | using System.Collections.Generic; |
| | | 2 | | using WireMock.Admin.Mappings; |
| | | 3 | | |
| | | 4 | | namespace WireMock.Admin.Requests |
| | | 5 | | { |
| | | 6 | | /// <summary> |
| | | 7 | | /// Response MessageModel |
| | | 8 | | /// </summary> |
| | | 9 | | public class LogResponseModel |
| | | 10 | | { |
| | | 11 | | /// <summary> |
| | | 12 | | /// Gets or sets the status code. |
| | | 13 | | /// </summary> |
| | 0 | 14 | | public int StatusCode { get; set; } = 200; |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Gets the headers. |
| | | 18 | | /// </summary> |
| | 0 | 19 | | public IDictionary<string, string> Headers { get; set; } |
| | | 20 | | |
| | | 21 | | /// <summary> |
| | | 22 | | /// Gets or sets the body. |
| | | 23 | | /// </summary> |
| | 0 | 24 | | public string Body { get; set; } |
| | | 25 | | |
| | | 26 | | /// <summary> |
| | | 27 | | /// Gets or sets the original body. |
| | | 28 | | /// </summary> |
| | 0 | 29 | | public string BodyOriginal { get; set; } |
| | | 30 | | |
| | | 31 | | /// <summary> |
| | | 32 | | /// Gets or sets the body. |
| | | 33 | | /// </summary> |
| | 0 | 34 | | public EncodingModel BodyEncoding { get; set; } |
| | | 35 | | } |
| | | 36 | | } |