Files
ihob/Assets/Extensions/TotalJSON/Scripts/Attributes/ExcludeFromJSONSerializeAttribute.cs
2026-02-21 17:04:05 -08:00

23 lines
562 B
C#

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