22 lines
441 B
C#
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; }
|
|
}
|
|
}
|