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