补全其他参数的下载参数

运行 停止  暂停的防呆操作
This commit is contained in:
2025-03-01 11:26:35 +08:00
parent a2c69f24f2
commit 1caa2fdd9f
16 changed files with 3318 additions and 260 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.PrismEvent
{
/// <summary>
/// 程序运行事件消息
/// </summary>
public class ProRunEventMsg
{
/// <summary>
/// 机器
/// </summary>
public string? Machine { get; set; }
/// <summary>
/// 消息
/// </summary>
public string? Msg { get; set; }
}
}