In order to create a new Enum, follow these steps:
- Either right-click on the project (or any subfolder in the project) and choose Add | New item....
Always try to use keyboard shortcuts, which are displayed next to the option. In this case, try Ctrl + Shift + A.
- This will open the Add New Item window. On the left-hand list, select Data Types, which is under the Operations Artifacts node.
- This will filter the available options on the right-hand list. From this list, choose Base Enum.
- Enter a name, prefixed appropriately. In this example, we are creating an Enum to store the type of vehicle; so, we will enter ConWHSVehicleType as Name and press Add.
This should have created a folder called Base Enums, or added the new Enum ...