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();
|
}
|
}
|
}
|