using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Raytheon.Instruments.LSPS { public static class RIO { public enum Command { GV_CLOSE, GV_OPEN, GET_GV_CLOSED_INPUT, GET_GV_OPEN_INPUT, GET_GV_CHAMBER_PRESSURE, GET_GV_CANISTER_PRESSURE }; private const string name_ = "RIO"; public static string GetFullCommand(Enum command) { return $"{name_} {command.ToString()}"; } } }