Files
PlantBox/PlantBox.Shared/Communication/Command.cs
2019-03-23 11:37:52 +01:00

18 lines
316 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,
Invalid,
Ping
}
}