You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
444 B
26 lines
444 B
|
|
using System;
|
|
|
|
namespace Rfid;
|
|
|
|
|
|
public class ViewEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// 连接状态
|
|
/// </summary>
|
|
public bool IsConnected { get; set; }
|
|
/// <summary>
|
|
/// 连接结果消息
|
|
/// </summary>
|
|
public string MsgContent { get; set; }
|
|
}
|
|
|
|
public class ViewMsgEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// 发送或接收消息
|
|
/// </summary>
|
|
public string MsgContent { get; set; }
|
|
}
|