11 lines
338 B
C#
11 lines
338 B
C#
using System;
|
|
|
|
namespace JetBrains.Annotations
|
|
{
|
|
// Token: 0x02000432 RID: 1074
|
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Delegate, AllowMultiple = false, Inherited = true)]
|
|
public sealed class CanBeNullAttribute : Attribute
|
|
{
|
|
}
|
|
}
|