using System; using System.Collections.Generic; using System.Text; namespace Apewer.Web { /// <summary></summary> [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] public sealed class RoutePrefixAttribute : Attribute { string _path; /// <summary></summary> public string Path { get { return _path; } } /// <summary></summary> /// <param name="path"></param> public RoutePrefixAttribute(string path) { _path = path; } } }