Initial Commit ...
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user