using System;
using System.Collections.Generic;
using System.Text;

namespace Apewer.Web
{

    /// <summary></summary>
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
    public sealed class RouteAttribute : Attribute
    {

        string _path;

        /// <summary></summary>
        public string Path { get => _path; }

        /// <summary></summary>
        public RouteAttribute() { }

        /// <summary></summary>
        public RouteAttribute(string path)
        {
            _path = path;
        }

    }

}