ln.json/attributes/JSONField.cs

12 lines
225 B
C#
Raw Normal View History

2017-11-03 13:13:09 +01:00
using System;
2017-11-23 13:05:58 +01:00
namespace sharp.json.attributes
2017-11-03 13:13:09 +01:00
{
public class JSONField : Attribute
{
public string Alias { get; set; }
public bool ConstructWithOwner { get; set; }
public Type ConstructWithType { get; set; }
2017-11-03 13:13:09 +01:00
}
}