init
This commit is contained in:
28
DataPRO/CanFDApiProxy/Requests/LEDsRequest.cs
Normal file
28
DataPRO/CanFDApiProxy/Requests/LEDsRequest.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user