22 lines
468 B
C#
22 lines
468 B
C#
|
using Easy4net.DBUtility;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Easy4net.Context
|
|||
|
{
|
|||
|
|
|||
|
public class ConnectionConfig
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 数据库连接信息
|
|||
|
/// </summary>
|
|||
|
public string ConnectionString { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 数据库类型
|
|||
|
/// </summary>
|
|||
|
public DatabaseType DatabaseType { get; set; }
|
|||
|
}
|
|||
|
}
|