Files
YuPu-OrpaonEMS/OrpaonEMS.Model/MasterSlave/EMSConErrEventArgs.cs
2025-02-28 22:23:13 +08:00

22 lines
441 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.Model.MasterSlave
{
public class EMSConErrEventArgs : EventArgs
{
/// <summary>
/// 消息
/// </summary>
public string Msg { get; set; }
/// <summary>
/// EMS连接结果
/// </summary>
public bool Result { get; set; }
}
}