using System; namespace AMWD.Common.Tests.Utils { [System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [AttributeUsage(AttributeTargets.All, AllowMultiple = true)] internal class CustomMultipleAttribute(string name) : Attribute { public string Name { get; set; } = name; } }