ln.http/ln.http/JsonBodyAttribute.cs

14 lines
288 B
C#

using System;
namespace ln.http;
[AttributeUsage(AttributeTargets.Parameter)]
public class JsonBodyAttribute : Attribute
{
public string Property { get; set; }
public JsonBodyAttribute(){}
public JsonBodyAttribute(string property)
{
Property = property;
}
}