You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
573 B
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JwKdsV.Core.MessageEvent
{
/// <summary>
/// 消息体
/// </summary>
public class MsgEventArgs : EventArgs
{
public MsgEventArgs(string eventType)
{
this.EventType = eventType;
}
/// <summary>
/// 消息类型
/// </summary>
public string EventType { get; set; }
/// <summary>
/// 消息内容
/// </summary>
public object Data { get; set; }
}
}