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

11 lines
186 B
C#
Raw Normal View History

2020-12-28 08:45:24 +01:00
using System;
namespace ln.http.api
{
public class ESPropertyAttribute : Attribute
{
public string Name { get; set; }
public bool ReadOnly { get; set; }
}
}