// MIT License - Copyright (c) 2025 wallstop // Full license text: https://github.com/wallstop/unity-helpers/blob/main/LICENSE namespace WallstopStudios.UnityHelpers.Tags { using System; /// /// Apply to components that must always be serialized into AttributeMetadataCache, /// even if they would otherwise be filtered as test-only. /// [AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)] public sealed class AlwaysIncludeInAttributeMetadataCacheAttribute : System.Attribute { } }