| | | 1 | | namespace WireMock.Admin.Settings |
| | | 2 | | { |
| | | 3 | | /// <summary> |
| | | 4 | | /// Settings |
| | | 5 | | /// </summary> |
| | | 6 | | public class SettingsModel |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Gets or sets the global delay in milliseconds. |
| | | 10 | | /// </summary> |
| | 8 | 11 | | public int? GlobalProcessingDelay { get; set; } |
| | | 12 | | |
| | | 13 | | /// <summary> |
| | | 14 | | /// Gets or sets if partial mapping is allowed. |
| | | 15 | | /// </summary> |
| | 9 | 16 | | public bool? AllowPartialMapping { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets the RequestLog expiration in hours |
| | | 20 | | /// </summary> |
| | 8 | 21 | | public int? RequestLogExpirationDuration { get; set; } |
| | | 22 | | |
| | | 23 | | /// <summary> |
| | | 24 | | /// Gets or sets the MaxRequestLog count. |
| | | 25 | | /// </summary> |
| | 8 | 26 | | public int? MaxRequestLogCount { get; set; } |
| | | 27 | | } |
| | | 28 | | } |