using SCADA.CommonLib; using SCADA_DAQ.Customer.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SCADA_DAQ.Customer { static class CustomerEnv { public static CustomerConfig CustomerConfig { get => _confg.Value; } public static AutoSaveParameterItem _confg { get; set; } = AutoSaveParameterItem.Create("App.CustomerConfig", new CustomerConfig()); } }