using DataEntity;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace XImagingXhandler.XDAL
|
{
|
public class MethodHome: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");
|
}
|
}
|
|
/// <summary>
|
/// arm名字
|
/// </summary>
|
public string armText { get; set; }
|
/// <summary>
|
/// arm的ID
|
/// </summary>
|
public string armValue { get; set; }
|
}
|
}
|