This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Defines identifiers for types of inheritance levels.</summary>
// Token: 0x020001AC RID: 428
[Token(Token = "0x20001AC")]
public enum InheritanceLevel
{
/// <summary>The object is inherited.</summary>
// Token: 0x04000627 RID: 1575
[Token(Token = "0x4000627")]
Inherited = 1,
/// <summary>The object is inherited, but has read-only access.</summary>
// Token: 0x04000628 RID: 1576
[Token(Token = "0x4000628")]
InheritedReadOnly,
/// <summary>The object is not inherited.</summary>
// Token: 0x04000629 RID: 1577
[Token(Token = "0x4000629")]
NotInherited
}
}