/// <summary> /// Constructor with reasonable defaults /// </summary> public SlaveStackConfig() { this.slave = new SlaveConfig(); this.device = new DeviceTemplate(10, 10, 10, 10, 10); this.link = new LinkConfig(false, false); this.app = new AppConfig(); }
/// <summary> /// Reasonable defaults /// </summary> public MasterStackConfig() { this.link = new LinkConfig(true, false); this.master = new MasterConfig(); this.app = new AppConfig(); }