16 lines
297 B
C#
16 lines
297 B
C#
using System;
|
|
|
|
namespace AMWD.Common.Tests.Utils
|
|
{
|
|
[AttributeUsage(AttributeTargets.All, AllowMultiple = true)]
|
|
internal class CustomMultipleAttribute : Attribute
|
|
{
|
|
public CustomMultipleAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
}
|
|
}
|