lixiaojun
2024-03-24 891cc5a533a57b992d18b6204faf4eb9c57472c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace Yw.Settings
{
    /// <summary>
    /// 
    /// </summary>
    public class Paras_Unit_DataBase
    {
        /// <summary>
        /// 数据库类型
        /// </summary>
        public string DbType { get; set; }
 
        /// <summary>
        /// PostgreSql
        /// </summary>
        public Paras_Unit_DataBase_PostgreSql PostgreSql { get; set; }
 
        /// <summary>
        /// SQLite
        /// </summary>
        public Paras_Unit_DataBase_SQLite SQLite { get; set; }
 
 
    }
 
}