mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 16:23:42 +01:00
15 lines
294 B
C#
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; }
|
|
}
|
|
} |