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;
namespace xModels.Base {
/// <summary>
/// a BaseEntity Class which has Id of Guid type
/// </summary>
public class XBaseGuidIDEntity : XBaseEntity<Guid> { }
}