namespace CANFDApiProxy.Requests { public class LEDsRequest { public string led { get; set; } public string cmd { get; set; } public string color { get; set; } } public enum LedColor { red, green, blue } public enum LedCmd { on, off, } public enum LedName { can1, can2, can3, can4, pwr, sts, status } }