ln.http/ln.http/HttpArgumentSourceAttribute.cs

18 lines
466 B
C#
Raw Normal View History

2022-02-07 09:29:30 +01:00
using System;
namespace ln.http
{
[AttributeUsage(AttributeTargets.Parameter)]
public class HttpArgumentSourceAttribute : Attribute
{
public HttpArgumentSource ArgumentSource { get; set; }
public string ArgumentName { get; set; }
public HttpArgumentSourceAttribute(){}
public HttpArgumentSourceAttribute(HttpArgumentSource argumentSource)
{
ArgumentSource = argumentSource;
}
}
}