26 lines
499 B
C#
26 lines
499 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 QQLogEvents : QQEvents
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 日志内容
|
|||
|
/// </summary>
|
|||
|
public string Message { get; internal set; }
|
|||
|
|
|||
|
public QQLogEvents(QQBase client) : base(client)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|