namespace WireMock.Admin.Settings { /// /// Settings /// public class SettingsModel { /// /// Gets or sets the global delay in milliseconds. /// public int? GlobalProcessingDelay { get; set; } /// /// Gets or sets if partial mapping is allowed. /// public bool? AllowPartialMapping { get; set; } /// /// Gets or sets the RequestLog expiration in hours /// public int? RequestLogExpirationDuration { get; set; } /// /// Gets or sets the MaxRequestLog count. /// public int? MaxRequestLogCount { get; set; } /// /// Gets or sets wether to allow a body for all HTTP methods. /// public bool? AllowBodyForAllHttpMethods { get; set; } } }