__admin/settings

This commit is contained in:
Stef Heyenrath
2017-02-13 19:34:04 +01:00
parent 2944b5392a
commit b25444d083
4 changed files with 55 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
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; }
}
}