mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-14 04:29:36 +02: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; }
|
|
}
|
|
} |