Files
FlaxEngine/Source/Engine/Scripting/Attributes/NoSerializeAttribute.cs
2022-01-14 13:31:12 +01:00

15 lines
411 B
C#

// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
/// <summary>
/// Indicates that a field or a property of a serializable class should not be serialized. This class cannot be inherited.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public sealed class NoSerializeAttribute : Attribute
{
}
}