using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DynStatDisk.App.Com
{
///
/// 操作状态
///
public class OpActionState
{
public OpActionState(string name, string currentCategory)
{
Name = name;
CurrentCategory = currentCategory;
CurrentResult = false;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 当前部品类型
///
public string CurrentCategory { get; set; }
///
/// 当前结果数据
///
public bool CurrentResult { get; set; }
}
}