using System; namespace Robust.Shared.Serialization { /// /// This attribute marks an object as able to be serialized by SS14's NetSerializer. It is required that objects /// that have this Attribute also have the . You can use /// to mark a field as non-serialized. Child classes are also NetSerializable. /// See the NetSerializer Documentation /// for more info. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = false, Inherited = false)] public sealed class NetSerializableAttribute : Attribute { } }