Files
RobustToolbox/Robust.Shared/Serialization/Manager/Attributes/NotYamlSerializableAttribute.cs
T
Leon FriedrichandGitHub 80dbf02af4 Log errors when encountering entity data fields (#5578)
* Log errors when encountering entity data fields

* Cleanup & comments

* Remove unnecessary GetGenericTypeDefinition
2025-01-07 16:54:25 +01:00

10 lines
334 B
C#

using System;
namespace Robust.Shared.Serialization.Manager.Attributes;
/// <summary>
/// Used to denote that a type is not serializable to yaml, and should not be used as a data-field.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
internal sealed class NotYamlSerializableAttribute : Attribute;