using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XImagingXhandler.XDAL
{
///
/// 设置变量属性实体类
///
public class MethodSetVariable
{
public string isrun { get; set; }
public string status { get; set; }
public string name { get; set; }
public string label { get; set; }
public string strIndex { get; set; } = "";
///
/// 是否开启变量弹窗,1:开启;0:不开启
///
public bool enablepopwin { get; set; }
///
/// 变量名称
///
public string variablename { get; set; } = "";
///
/// 变量值
///
public string variablevalue { get; set; } = "";
}
}