You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
603 B
20 lines
603 B
using System.Collections.Generic;
|
|
|
|
namespace EShopOnAbp.Shared.Hosting.Gateways
|
|
{
|
|
public class OcelotConfiguration
|
|
{
|
|
public string ServiceKey { get; set; }
|
|
public string DownstreamPathTemplate { get; set; }
|
|
public string DownstreamScheme { get; set; }
|
|
public string UpstreamPathTemplate { get; set; }
|
|
public List<string> UpstreamHttpMethod { get; set; }
|
|
public List<HostAndPort> DownstreamHostAndPorts { get; set; }
|
|
}
|
|
|
|
public class HostAndPort
|
|
{
|
|
public string Host { get; set; }
|
|
public int Port { get; set; }
|
|
}
|
|
}
|