mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
8 lines
244 B
C#
8 lines
244 B
C#
|
|
namespace System.Diagnostics.CodeAnalysis
|
||
|
|
{
|
||
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property | AttributeTargets.ReturnValue)]
|
||
|
|
public sealed class NotNullAttribute : Attribute
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|