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