using System; namespace xExceptions.Attributes { /// /// an attribute which attached to enums to carry propper string /// public partial class StringValueAttribute : System.Attribute { public string StringValue { get; set; } public StringValueAttribute (string value) { this.StringValue = value; } } }