using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 监测测试控制参数
///
public class MonitorTestControlParas
{
///
/// 0代表关机 1代表开机 -1代表变频
///
public int Type { get; set; }
///
/// 参数
///
public string Paras { get; set; }
}
}