using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Newtonsoft.Json { /// /// Instructs the not to serialize the public field or public read/write property value. /// [AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Property, AllowMultiple = false)] public sealed class JsonConstructorAttribute : Attribute { } }