mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-24 10:40:23 +00:00
16 lines
419 B
C#
16 lines
419 B
C#
namespace Microsoft.AspNetCore.SpaServices.Webpack
|
|
{
|
|
internal class ConditionalProxyMiddlewareOptions
|
|
{
|
|
public ConditionalProxyMiddlewareOptions(string scheme, string host, string port)
|
|
{
|
|
Scheme = scheme;
|
|
Host = host;
|
|
Port = port;
|
|
}
|
|
|
|
public string Scheme { get; }
|
|
public string Host { get; }
|
|
public string Port { get; }
|
|
}
|
|
} |