17 lines
377 B
C#
17 lines
377 B
C#
using Microsoft.CodeAnalysis;
|
|
|
|
namespace System.Runtime.CompilerServices;
|
|
|
|
[CompilerGenerated]
|
|
[Embedded]
|
|
[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
|
|
internal sealed class NullablePublicOnlyAttribute : Attribute
|
|
{
|
|
public readonly bool IncludesInternals;
|
|
|
|
public NullablePublicOnlyAttribute(bool P_0)
|
|
{
|
|
IncludesInternals = P_0;
|
|
}
|
|
}
|