Files
PlantBox/PlantBox.Shared/Communication/Command.cs
2019-03-19 21:02:10 +01:00

15 lines
216 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PlantBox.Shared.Communication
{
public enum Command
{
Captors,
Historic,
Invalid,
Ping
}
}