mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
19 lines
446 B
C#
19 lines
446 B
C#
using System;
|
|
|
|
#if NETSTANDARD2_0
|
|
namespace Robust.Shared.Analyzers.Implementation;
|
|
#else
|
|
namespace Robust.Shared.Analyzers;
|
|
#endif
|
|
|
|
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.GenericParameter)]
|
|
public sealed class NotNullableFlagAttribute : Attribute
|
|
{
|
|
public readonly string TypeParameterName;
|
|
|
|
public NotNullableFlagAttribute(string typeParameterName)
|
|
{
|
|
TypeParameterName = typeParameterName;
|
|
}
|
|
}
|