12 lines
302 B
C#
12 lines
302 B
C#
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;
|
|
}
|
|
}
|