This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,26 @@
using System;
namespace JetBrains.Annotations
{
// Token: 0x0200043F RID: 1087
[MeansImplicitUse]
public sealed class PublicAPIAttribute : Attribute
{
// Token: 0x06003864 RID: 14436 RVA: 0x00060C60 File Offset: 0x0005EE60
public PublicAPIAttribute()
{
}
// Token: 0x06003865 RID: 14437 RVA: 0x00060C6C File Offset: 0x0005EE6C
public PublicAPIAttribute([NotNull] string comment)
{
this.Comment = comment;
}
// Token: 0x17000CF5 RID: 3317
// (get) Token: 0x06003866 RID: 14438 RVA: 0x00060C7C File Offset: 0x0005EE7C
// (set) Token: 0x06003867 RID: 14439 RVA: 0x00060C98 File Offset: 0x0005EE98
[NotNull]
public string Comment { get; private set; }
}
}