18 lines
316 B
C#
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
|
|
}
|
|
}
|