ln.http/ln.http/RouteAttribute.cs

13 lines
197 B
C#

using System;
namespace ln.http;
[AttributeUsage(AttributeTargets.Parameter)]
public class RouteAttribute : Attribute
{
public string Name { get; set; }
public RouteAttribute(){}
}