using System; using System.Collections.Generic; using System.Text; namespace PlantBox.Shared.Communication { /// /// All valid commands as described in the Wiki > Commands /// public enum Command { Captors, Historic, Info, Invalid, Ping } }