Mike Phares 5cda494708 Infineon.EAF.Runtime v2.59.0
With .gitignore *.traineddata
2025-02-21 13:47:08 -07:00

9 lines
371 B
C#

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() { }
}