1234567891011121314151617 |
- 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<CustomerConfig> _confg { get; set; } = AutoSaveParameterItem.Create("App.CustomerConfig", new CustomerConfig());
- }
- }
|