using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataEntity;
namespace XImagingXhandler.XDAL
{
///
/// 振荡参数类
///
public class MethodShake:IEntity
{
///
/// 是否从此命令开始
///
public string isrun { get; set; } = "运行起点";
///
/// 命令是否可用
///
public string status { get; set; } = "可用";
///
/// 命令名称
///
public string name { get; set; } = "";
public string strIndex { get; set; } = "";
private string _label = "";
///
/// 命令标签名
///
public string label
{
get { return _label; }
set
{
_label = value;
OnPropertyChanged("label");
}
}
///
/// 模式
///
public int modeVal { get; set; } = 0;
///
/// 振荡速度
///
public double shakeSpeed { get; set; } = 0d;
///
/// 振荡时间s
///
public int shakeDuringTime { get; set; } = 0;
///
/// 移动速度
///
public double shakeMoveSpeed { get; set; } = 0d;
///
/// 角度
///
public double shakeMoveAngle { get; set; } = 0d;
}
}