namespace ISupply
{
///
/// Settings
///
public class Settings
{
///
/// User 参数
///
public static Paras_User User
{
get { return SettingsHelper.Get().User; }
}
///
/// SQLite 参数
///
public static Paras_SQLite SQLite
{
get { return SettingsHelper.Get().SQLite; }
}
///
/// File 参数
///
public static Paras_File File
{
get { return SettingsHelper.Get().File; }
}
///
/// MemoryCache 参数
///
public static Paras_MemoryCache MemoryCache
{
get { return SettingsHelper.Get().MemoryCache; }
}
///
/// 保存
///
public static void Save()
{
SettingsHelper.Save();
}
}
}