duheng
2024-10-09 e39f5a762c3401ae38b0c064b10bd4c30effb6e4
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
27
28
namespace HStation.Settings.Assets
{
    /// <summary>
    ///
    /// </summary>
    public class Paras_Xhs_DataBase
    {
        /// <summary>
        /// 数据库类型
        /// </summary>
        public string DbType { get; set; }
 
        /// <summary>
        /// 工厂
        /// </summary>
        public Paras_Xhs_DataBase_Factory Factory { get; set; }
 
        /// <summary>
        /// PostgreSql
        /// </summary>
        public Paras_Xhs_DataBase_PostgreSql PostgreSql { get; set; }
 
        /// <summary>
        /// SQLite
        /// </summary>
        public Paras_Xhs_DataBase_SQLite SQLite { get; set; }
    }
}