Initial ...

This commit is contained in:
2026-03-22 14:08:25 +03:30
commit d3464ef39c
71 changed files with 19087 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
namespace xIds.Constants
{
/// <summary>
/// /// Represent Supported DBMS for Managing Data ...
/// </summary>
public enum XDbProviders
{
None,
MySQL,
SQLite,
SQLServer,
}
/// <summary>
/// Represent Supported DBMS for Managing Data ...
/// </summary>
public partial struct ProviderType
{
public const string MySQL = "MYSQL";
public const string SQLite = "SQLITE";
public const string SQLServer = "SQLSERVER";
}
}