mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 21:12:51 +08:00
13 lines
480 B
C#
13 lines
480 B
C#
namespace Ocelot.Library.Infrastructure.UrlPathMatcher
|
|
{
|
|
public class TemplateVariableNameAndValue
|
|
{
|
|
public TemplateVariableNameAndValue(string templateVariableName, string templateVariableValue)
|
|
{
|
|
TemplateVariableName = templateVariableName;
|
|
TemplateVariableValue = templateVariableValue;
|
|
}
|
|
public string TemplateVariableName {get;private set;}
|
|
public string TemplateVariableValue {get;private set;}
|
|
}
|
|
} |