using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace IStation.Model
{
///
/// 监控状态
///
public enum eMonitorStatus
{
///
/// 未开启
///
Disable = 0,
///
/// 开启
///
Enable = 1,
}
}