using System; using System.Collections.Generic; using WireMock.Logging; using WireMock.Matchers; namespace WireMock.Owin { internal class WireMockMiddlewareOptions { public TimeSpan? RequestProcessingDelay { get; set; } public IMatcher AuthorizationMatcher { get; set; } public bool AllowPartialMapping { get; set; } public IList Mappings { get; set; } public IList LogEntries { get; set; } public int? RequestLogExpirationDuration { get; set; } public int? MaxRequestLogCount { get; set; } public WireMockMiddlewareOptions() { Mappings = new List(); LogEntries = new List(); } } }