mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-22 16:58:06 +01:00
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
namespace WireMock.Admin.Settings
|
|
{
|
|
/// <summary>
|
|
/// Settings
|
|
/// </summary>
|
|
public class SettingsModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the global delay in milliseconds.
|
|
/// </summary>
|
|
public int? GlobalProcessingDelay { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets if partial mapping is allowed.
|
|
/// </summary>
|
|
public bool? AllowPartialMapping { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the RequestLog expiration in hours
|
|
/// </summary>
|
|
public int? RequestLogExpirationDuration { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the MaxRequestLog count.
|
|
/// </summary>
|
|
public int? MaxRequestLogCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets wether to allow a body for all HTTP methods.
|
|
/// </summary>
|
|
public bool? AllowBodyForAllHttpMethods { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets wether to handle all requests synchronously.
|
|
/// </summary>
|
|
public bool? HandleRequestsSynchronously { get; set; }
|
|
}
|
|
} |