using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Wpf.PrismEvent { /// /// 程序运行事件消息 /// public class ProRunEventMsg { /// /// 机器 /// public string? Machine { get; set; } /// /// 消息 /// public string? Msg { get; set; } } }