Initial Commit ...

This commit is contained in:
2024-01-25 04:35:39 +03:30
commit 9373d5848a
8 changed files with 296 additions and 0 deletions
+15
View File
@@ -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;
}
}
}