AssemblyTool/AssemblyRemapper/Enums/EFailureReason.cs

21 lines
330 B
C#
Raw Normal View History

2024-06-12 18:59:08 -04:00
namespace AssemblyRemapper.Enums;
internal enum EFailureReason
{
None,
IsAbstract,
IsEnum,
IsNested,
IsSealed,
IsDerived,
IsInterface,
IsPublic,
HasGenericParameters,
HasAttribute,
IsAttribute,
2024-06-13 04:56:08 -04:00
Constructor,
2024-06-12 18:59:08 -04:00
HasMethods,
HasFields,
HasProperties,
HasNestedTypes,
}