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