22 lines
476 B
C#
22 lines
476 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 QQEvents: ChatEvent
|
|
{
|
|
/// <summary>
|
|
/// QQ基类
|
|
/// </summary>
|
|
public QQBase QQBase { get; private set; }
|
|
public QQEvents(QQBase QQBase) { this.QQBase = QQBase; }
|
|
}
|
|
}
|