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
+5
View File
@@ -0,0 +1,5 @@
namespace xModels.Base {
public abstract class XBaseStorableDto<TKey> : XBaseDto {
public abstract TKey Id { get; set; }
}
}