You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
704 B
46 lines
704 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SmartAquaViewer.Model
|
|
{
|
|
public enum MonitorTab
|
|
{
|
|
Tank,
|
|
Filter,
|
|
Sterilizer
|
|
}
|
|
|
|
public enum GraphType
|
|
{
|
|
LINE,
|
|
BOX,
|
|
SCATTER,
|
|
STEP,
|
|
STACKAREA,
|
|
PIE
|
|
}
|
|
|
|
public enum StepFieldKind
|
|
{
|
|
Status, // 전원/상태
|
|
Sensor, // 센서 값
|
|
Energy, // 에너지 소비량
|
|
GHG // 온실가스 배출량
|
|
}
|
|
|
|
public enum PowerStatus
|
|
{
|
|
Off,
|
|
On
|
|
}
|
|
|
|
public enum DataType
|
|
{
|
|
Energy,
|
|
GreenhouseGas
|
|
}
|
|
}
|