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