Files
DP44/DataPRO/CanFDApiProxy/.svn/pristine/3f/3f8890833bfc414f886029fc8da600bb887d4aa7.svn-base
2026-04-17 14:55:32 -04:00

29 lines
458 B
Plaintext

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
}
}