Files
WireMock.Net-wiremock/src/WireMock.Net/Owin/HostUrlDetails.cs
2020-11-10 16:40:15 +01:00

15 lines
294 B
C#

namespace WireMock.Owin
{
internal class HostUrlDetails
{
public bool IsHttps { get; set; }
public string Url { get; set; }
public string Protocol { get; set; }
public string Host { get; set; }
public int Port { get; set; }
}
}