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 @@
namespace xExceptions.Models {
public partial class XError {
/// <summary>
/// th ID of Error
/// </summary>
/// <value></value>
public int Id { get; set; }
/// <summary>
/// the String Value of Error
/// </summary>
/// <value></value>
public string Message { get; set; }
}
}