using System; namespace GlitchyEngine.Serialization; /// /// Specifies that the field should not be serialized. /// /// [AttributeUsage(AttributeTargets.Field)] public sealed class DontSerializeFieldAttribute : Attribute { }