添加项目文件。
This commit is contained in:
36
EleBox.App/Com/OpActionState.cs
Normal file
36
EleBox.App/Com/OpActionState.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user