public ConfigData() { this.database = new ConfigDBData(); this.gateway = new ConfigIAGWData(); this.specialWeatherReport = new ConfigSWRData(); this.localSetting = new ConfigLocalSettingData(); }
public void DeepCopyFrom(ConfigSWRData src) { System.Diagnostics.Debug.Assert(src != null); if (src == null) { return; } this.useService = src.useService; this.serviceKey = src.serviceKey; this.cycleTimeMinute = src.cycleTimeMinute; }