12345678910111213141516171819202122 |
- namespace Long.Core.Settings;
- public class DbSetting
- {
-
-
-
- public string DbType { get; set; } = string.Empty;
-
-
-
- public string DbKey { get; set; } = string.Empty;
-
-
-
- public string ConnectionString { get; set; } = string.Empty;
- }
|