DEP08SIHTRPLC - v2.43.0 - Ready to Test

This commit is contained in:
2022-07-29 14:57:38 -07:00
parent c567bb44e0
commit 91b162a7eb
108 changed files with 12877 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using System;
namespace Adaptation.PeerGroup.GCL.Annotations;
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.Delegate, AllowMultiple = false, Inherited = true)]
public sealed class NotNullAttribute : Attribute
{
public NotNullAttribute() { }
}