using System.Collections.Generic;
namespace NCC.DynamicApiController
{
///
/// 参数路由模板
///
internal class ParameterRouteTemplate
{
///
/// 构造函数
///
public ParameterRouteTemplate()
{
ControllerStartTemplates = new List();
ControllerEndTemplates = new List();
ActionStartTemplates = new List();
ActionEndTemplates = new List();
}
///
/// 控制器之前的参数
///
public IList ControllerStartTemplates { get; set; }
///
/// 控制器之后的参数
///
public IList ControllerEndTemplates { get; set; }
///
/// 行为之前的参数
///
public IList ActionStartTemplates { get; set; }
///
/// 行为之后的参数
///
public IList ActionEndTemplates { get; set; }
}
}