19 lines
376 B
C#
19 lines
376 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 QQRefreshUser : QQEvents
|
|
{
|
|
public QQRefreshUser(QQBase QQBase) : base(QQBase)
|
|
{ }
|
|
}
|
|
}
|