ln.http.api/ln.http.api/attributes/ESPropertyAttribute.cs

11 lines
186 B
C#

using System;
namespace ln.http.api
{
public class ESPropertyAttribute : Attribute
{
public string Name { get; set; }
public bool ReadOnly { get; set; }
}
}