using System; namespace sharp.json.attributes { public class JSONField : Attribute { public string Alias { get; set; } public bool ConstructWithOwner { get; set; } public Type ConstructWithType { get; set; } } }