This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace Singular.Newtonsoft.Json
{
// Token: 0x02000037 RID: 55
[Token(Token = "0x200002E")]
public enum Required
{
// Token: 0x04000109 RID: 265
[Token(Token = "0x40000D0")]
Default,
// Token: 0x0400010A RID: 266
[Token(Token = "0x40000D1")]
AllowNull,
// Token: 0x0400010B RID: 267
[Token(Token = "0x40000D2")]
Always
}
}