添加项目文件。

This commit is contained in:
2025-06-03 17:27:51 +08:00
parent 86e545c80b
commit 37b95aead5
148 changed files with 16891 additions and 0 deletions

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