Files
CapMachine/CapMachine.Wpf/PrismEvent/ProRunEventMsg.cs
Tyrone CT 1caa2fdd9f 补全其他参数的下载参数
运行 停止  暂停的防呆操作
2025-03-01 11:26:35 +08:00

25 lines
489 B
C#

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