16 lines
381 B
C#
16 lines
381 B
C#
using System;
|
|
|
|
namespace xExceptions.Attributes
|
|
{
|
|
/// <summary>
|
|
/// an attribute which attached to enums to carry propper string
|
|
/// </summary>
|
|
public partial class StringValueAttribute : System.Attribute {
|
|
public string StringValue { get; set; }
|
|
|
|
public StringValueAttribute (string value) {
|
|
this.StringValue = value;
|
|
}
|
|
}
|
|
}
|