mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-10 18:56:50 +02:00
17 lines
347 B
C#
17 lines
347 B
C#
namespace WireMock.Owin;
|
|
|
|
/// <summary>
|
|
/// https://en.wikipedia.org/wiki/Uniform_Resource_Identifier
|
|
/// </summary>
|
|
internal struct HostUrlDetails
|
|
{
|
|
public bool IsHttps { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
|
|
public string Scheme { get; set; }
|
|
|
|
public string Host { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
} |