using System.Collections.Generic; using System.Diagnostics; namespace Microsoft.AspNet.Mvc { [DebuggerDisplay("{Path}:{Name}")] public class ActionDescriptor { public virtual string Path { get; set; } public virtual string Name { get; set; } public List RouteConstraints { get; set; } public List MethodConstraints { get; set; } public List DynamicConstraints { get; set; } public List Parameters { get; set; } public List Filters { get; set; } public bool AllowAnonymous { get; set; } } }