AssemblyTool/AssemblyRemapper/Enums/EFailureReason.cs
2024-06-12 18:59:08 -04:00

20 lines
313 B
C#

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