using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
///
///
public partial class MonitorTestControlParas
{
///
/// 开机参数
///
public class StartContext : JsonList
{
///
///
///
public StartContext() { }
///
///
///
public StartContext(double hz, eOperatingMode operatingMode, double operatingValue)
{
this.HZ = hz;
this.OperatingMode = operatingMode;
this.OperatingValue = operatingValue;
}
///
/// 频率
///
public double HZ { get; set; }
///
/// 运行模式
///
public eOperatingMode OperatingMode { get; set; }
///
/// 运行值
///
public double OperatingValue { get; set; }
}
}
}