Lets say you have this enum:
Public Enum ApplicationStatus
<Foo("Active")> Active = 1
<Foo("Inactive")> Inactive = 2
<Foo("Retired")> Retired = 3
<Foo("In Development")> InDevelopment = 4
End Enum
What attribute should I use in place of Foo for plain-text descriptions of the Enum?