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