enum in C#

To create an enum, use the enum keyword (instead of using class or interface), and separate the enum items with a comma:
```
enum Level 
{
  Low,
  Medium,
  High
}
```