mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-22 08:47:51 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
33 lines
950 B
C#
33 lines
950 B
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; }
|
|
}
|
|
} |