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