using DataEntity;
using System;
using System.Collections.Generic;
using System.Data;
using System.Windows;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Collections.ObjectModel;
namespace XImagingXhandler.XDAL
{
///
/// 超声探测
///
public class MethodUltrasonic : 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 MethodUltrasonicChild ultrasonicData { get; set; } = new MethodUltrasonicChild();
}
}