Files
PlantBox/PlantBox.Shared/Communication/Commands/PlantState.cs
2019-03-24 19:40:53 +01:00

15 lines
223 B
C#

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