AssemblyTool/AssemblyRemapper/Enums/EFailureReason.cs
2024-06-13 04:56:08 -04:00

21 lines
330 B
C#

namespace AssemblyRemapper.Enums;
internal enum EFailureReason
{
None,
IsAbstract,
IsEnum,
IsNested,
IsSealed,
IsDerived,
IsInterface,
IsPublic,
HasGenericParameters,
HasAttribute,
IsAttribute,
Constructor,
HasMethods,
HasFields,
HasProperties,
HasNestedTypes,
}