mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-26 02:08:29 +02:00
committed by
Stef Heyenrath
parent
9c55ff5ea6
commit
2d39a18b70
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using WireMock.Logging;
|
||||
using WireMock.Matchers;
|
||||
|
||||
@@ -15,7 +16,7 @@ namespace WireMock.Owin
|
||||
|
||||
public IList<Mapping> Mappings { get; set; }
|
||||
|
||||
public IList<LogEntry> LogEntries { get; set; }
|
||||
public ObservableCollection<LogEntry> LogEntries { get; set; }
|
||||
|
||||
public int? RequestLogExpirationDuration { get; set; }
|
||||
|
||||
@@ -24,7 +25,7 @@ namespace WireMock.Owin
|
||||
public WireMockMiddlewareOptions()
|
||||
{
|
||||
Mappings = new List<Mapping>();
|
||||
LogEntries = new List<LogEntry>();
|
||||
LogEntries = new ObservableCollection<LogEntry>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user