using System; namespace Automap { /// /// Command Type /// public enum CommandType : byte { Stop = 0x00, Run = 0x01, Snapshot = 0x02, Notation = 0x03, } }