// ExcludeFromJSONSerialize
using System;
namespace Leguar.TotalJSON {
///
/// Attribute that can be used to exclude single field from JSON serialization. With default serialization settings, this does same as System.NonSerialized attribute.
///
[AttributeUsage(AttributeTargets.Field, Inherited = false)]
public sealed class ExcludeFromJSONSerializeAttribute : Attribute {
///
/// Constructor for new ExcludeFromJSONSerialize attribute.
///
public ExcludeFromJSONSerializeAttribute() {
}
}
}