Files
RobustToolbox/Robust.Shared/Analyzers/PreferNonGenericVariantForAttribute.cs
2024-07-10 12:33:56 +02:00

19 lines
404 B
C#

using System;
#if ROBUST_ANALYZERS_IMPL
namespace Robust.Shared.Analyzers.Implementation;
#else
namespace Robust.Shared.Analyzers;
#endif
[AttributeUsage(AttributeTargets.Method)]
public sealed class PreferNonGenericVariantForAttribute : Attribute
{
public readonly Type[] ForTypes;
public PreferNonGenericVariantForAttribute(params Type[] forTypes)
{
ForTypes = forTypes;
}
}