15 lines
216 B
C#
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
|
|
}
|
|
}
|