namespace CommonUtil { /// /// public class DbConnection { /// /// 数据库简称,键,唯一不可重复 /// public string Key { get; set; } /// /// 数据库类型 /// public string DbType { get; set; } /// /// 数据库链接字符串 /// public string ConnectionString { get; set; } } }