tangxu
2024-04-30 26d8996e55c33186800031f7c305688035bb3182
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
namespace IStation.ChEr
{
    /// <summary>
    /// Settings
    /// </summary>
    public class Settings
    {
        /// <summary>
        /// User 参数
        /// </summary>
        public static Paras_User User
        {
            get { return SettingsHelper.Get().User; }
        }
 
        /// <summary>
        /// SQLite 参数
        /// </summary>
        public static Paras_SQLite SQLite
        {
            get { return SettingsHelper.Get().SQLite; }
        }
 
        /// <summary>
        /// File 参数
        /// </summary>
        public static Paras_File File
        {
            get { return SettingsHelper.Get().File; }
        }
 
        /// <summary>
        /// MemoryCache 参数
        /// </summary>
        public static Paras_MemoryCache MemoryCache
        {
            get { return SettingsHelper.Get().MemoryCache; }
        }
 
 
 
        /// <summary>
        /// 保存
        /// </summary>
        public static void Save()
        {
            SettingsHelper.Save();
        }
    }
}