using System; namespace FullSerializer { /// /// The given property or field annotated with [JsonIgnore] will not be serialized. /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public sealed class fsIgnoreAttribute : Attribute { } }