old_flsystem/类库/Chat.Framework/QQSdk/Events/QQLostConnectionEvents.cs

23 lines
543 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
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; }
}
}