mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 23:02:34 +02:00
* Log errors when encountering entity data fields * Cleanup & comments * Remove unnecessary GetGenericTypeDefinition
10 lines
334 B
C#
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;
|