ln.http/ln.http/QueryAttribute.cs

11 lines
195 B
C#

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