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