mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-27 05:32:51 +08:00
19 lines
617 B
C#
19 lines
617 B
C#
using System.Collections.Generic;
|
|
using Ocelot.Configuration;
|
|
using Ocelot.DownstreamRouteFinder.UrlMatcher;
|
|
|
|
namespace Ocelot.DownstreamRouteFinder
|
|
{
|
|
public class DownstreamRoute
|
|
{
|
|
public DownstreamRoute(List<PlaceholderNameAndValue> templatePlaceholderNameAndValues, ReRoute reRoute)
|
|
{
|
|
TemplatePlaceholderNameAndValues = templatePlaceholderNameAndValues;
|
|
ReRoute = reRoute;
|
|
}
|
|
|
|
public List<PlaceholderNameAndValue> TemplatePlaceholderNameAndValues { get; private set; }
|
|
public ReRoute ReRoute { get; private set; }
|
|
}
|
|
}
|