AssemblyTool/AssemblyRemapper/Enums/EFailureReason.cs
2024-06-13 18:15:52 -04:00

21 lines
328 B
C#

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