Files
xExceptions/Attributes/StringValueAttribute.cs
T
2024-01-25 04:35:39 +03:30

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;
}
}
}