namespace WireMock.Net { /// /// WireMockSettings /// public class WireMockSettings { /// /// Gets or sets the port. /// /// /// The port. /// public int? Port { get; set; } /// /// Gets or sets the use SSL. /// /// /// The use SSL. /// // ReSharper disable once InconsistentNaming public bool? UseSSL { get; set; } /// /// Gets or sets the start admin interface. /// /// /// The start admin interface. /// public bool? StartAdminInterface { get; set; } /// /// Gets or sets the read static mappings. /// /// /// The read static mappings. /// public bool? ReadStaticMappings { get; set; } /// /// Gets or sets the urls. /// /// /// The urls. /// public string[] Urls { get; set; } } }