Files
beyond/Assets/ThirdParty/FullSerializer/Source/fsIgnoreAttribute.cs
2024-11-20 15:21:28 +01:00

11 lines
365 B
C#

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