Files
SCRGroupLineDynStatDisk/EleBox.App/Com/OpActionState.cs
2025-06-03 17:27:51 +08:00

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; }
}
}