Summary

Class:WireMock.Admin.Settings.SettingsModel
Assembly:WireMock.Net
File(s):C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Settings\SettingsModel.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:28
Line coverage:100%

File(s)

C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Settings\SettingsModel.cs

#LineLine coverage
 1namespace WireMock.Admin.Settings
 2{
 3    /// <summary>
 4    /// Settings
 5    /// </summary>
 6    public class SettingsModel
 7    {
 8        /// <summary>
 9        /// Gets or sets the global delay in milliseconds.
 10        /// </summary>
 811        public int? GlobalProcessingDelay { get; set; }
 12
 13        /// <summary>
 14        /// Gets or sets if partial mapping is allowed.
 15        /// </summary>
 916        public bool? AllowPartialMapping { get; set; }
 17
 18        /// <summary>
 19        /// Gets or sets the RequestLog expiration in hours
 20        /// </summary>
 821        public int? RequestLogExpirationDuration { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets the MaxRequestLog count.
 25        /// </summary>
 826        public int? MaxRequestLogCount { get; set; }
 27    }
 28}