Do you use singular or plural for enumerations? I think it makes best sense with plural in the declaration
enum Weekdays { Monday, Tuesday, Wednesday
Here it is straight from Microsoft:
http://msdn.microsoft.com/en-us/library/4x252001(VS.71).aspx
Use a singular name for most Enum types, but use a plural name for Enum types that are bit fields.