using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// /// public class LogicTreeEx : LogicTree { /// /// /// public LogicTreeEx() { } /// /// /// public LogicTreeEx(Model.LogicTree rhs) : base(rhs) { } /// /// /// public LogicTreeEx(Model.LogicTree rhs, string name, string description) : base(rhs) { this.Name = name; this.Description = description; } /// /// /// public LogicTreeEx(Model.LogicTreeEx rhs) : base(rhs) { this.Name = rhs.Name; this.Description = rhs.Description; } /// /// /// public string Name { get; set; } /// /// /// public string Description { get; set; } } }