This commit is contained in:
CortexCore
2025-07-03 17:43:24 +08:00
parent eac28d17ec
commit 9025e8d602
24 changed files with 305 additions and 165 deletions

View File

@@ -0,0 +1,9 @@
namespace CAICT.IDIS
{
public abstract record IDIS_Config
{
public abstract string DataBaseName { get; }
public abstract string ConnectionString { get; }
}
}