Add Info Command

This commit is contained in:
2019-03-24 11:34:35 +01:00
parent b02114f0f9
commit 6d7a9969cd
4 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PlantBox.Shared.Communication.Commands
{
public enum PlantState
{
Bad,
Warning,
Good
}
}