pixelgon/Assets/Source/fsIgnoreAttribute.cs
2020-06-05 11:54:36 -07:00

10 lines
No EOL
306 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)]
public sealed class fsIgnoreAttribute : Attribute {
}
}