Initial Commit ...

This commit is contained in:
2024-01-25 04:37:38 +03:30
commit c5d69522a9
26 changed files with 1252 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
using System.ComponentModel.DataAnnotations;
namespace xModels.Base {
/// <summary>
/// a BaseEntity Class which has Id of int type
/// </summary>
public abstract class XBaseIntIDEntity : XBaseEntity<int> { }
}