Files
PlantBox/PlantBox.Shared/Communication/Command.cs
2019-03-24 11:34:49 +01:00

19 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PlantBox.Shared.Communication
{
/// <summary>
/// All valid commands as described in the Wiki > Commands
/// </summary>
public enum Command
{
Captors,
Historic,
Info,
Invalid,
Ping
}
}