namespace IStation
|
{
|
/// <summary>
|
/// Settings
|
/// </summary>
|
public class Settings
|
{
|
/// <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>
|
/// DataImport 参数
|
/// </summary>
|
public static Paras_DataImport DataImport
|
{
|
get { return SettingsHelper.Get().DataImport; }
|
}
|
|
|
|
|
public static Paras_DispSetting DispSetting
|
{
|
get { return SettingsHelper.Get().DispSetting; }
|
}
|
}
|
}
|