Creating a folder named Enumerations, Enums, or something descriptive should be enough. You can also follow the C # naming standards, which state:
"Enum names Do not use a prefix for enum value names. For example, do not use a prefix such as a declaration for ADO enumerations, or rtf for extended text enumerations, etc.
It also means that you should not include the name of an enumeration type in the names of enumeration values. The following code example demonstrates the misappropriation of enumeration values.
C # code as follows
public enum Teams { TeamsAlpha, TeamsBeta, TeamsDelta }
References: Names of classes, structures, and interfaces
source share