Add Protocol implementation

This commit is contained in:
2019-03-19 21:02:10 +01:00
parent 268e04a710
commit 58fbaf4e35
4 changed files with 143 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PlantBox.Shared.Communication
{
public enum Command
{
Captors,
Historic,
Invalid,
Ping
}
}