Files
PlantBox/PlantBox.Shared/Communication/Commands/PlantState.cs
2019-03-24 11:34:35 +01:00

14 lines
206 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PlantBox.Shared.Communication.Commands
{
public enum PlantState
{
Bad,
Warning,
Good
}
}