23 lines
543 B
C#
23 lines
543 B
C#
using Robot.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Chat.Framework.QQSdk.Events
|
|
{
|
|
/// <summary>
|
|
/// QQ失去连接事件
|
|
/// </summary>
|
|
public class QQLostConnectionEvents : QQEvents
|
|
{
|
|
/// <summary>
|
|
/// 消息
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
|
|
public QQLostConnectionEvents(QQBase QQBase, string message) : base(QQBase) { this.Message = message; }
|
|
}
|
|
}
|