using Robot.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Chat.Framework.QQSdk.Events { /// /// QQ增加新好友事件 /// public class QQNewFriendEvents : QQEvents { /// /// QQ /// public uint QQ { get; internal set; } /// /// 昵称 /// public string Nickname { get; internal set; } public QQNewFriendEvents(QQBase QQBase) : base(QQBase) { } } }