using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TProduct { internal class Paras { public Paras() { } public Paras(bool initial) { if (initial) { this.CacheParas = new CacheParas(); } } /// /// 全局参数 /// public CacheParas CacheParas { get; set; } public static bool Save() { return SettingsHelper.Save(); } } }