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 QQNewGroupMemberEvents : QQEvents
{
public override string ToString()
{
return $"QQ({QQBase.Nickname}【{QQBase.QQ}】)->群{GroupName}({GroupId}),新增群成员->{NewFriendNick}({NewFriendQQ})邀请人{InviteNick}({InviteQQ})";
}
///
/// 群账号
///
public uint GroupId { get; internal set; }
///
/// 群昵称
///
public string GroupName { get; internal set; }
///
/// 群创建者QQ
///
public uint Creator { get; internal set; }
///
/// 新用户QQ
///
public uint NewFriendQQ { get; internal set; }
///
/// 新用户昵称
///
public string NewFriendNick { get; internal set; }
///
/// 推荐者QQ
///
public uint InviteQQ { get; internal set; }
///
/// 推荐者昵称
///
public string InviteNick { get; internal set; }
///
/// 操作员昵称
///
public string OperatorName { get; internal set; }
///
/// 操作员
///
public uint Operator { get; internal set; }
public QQNewGroupMemberEvents(QQBase QQBase) : base(QQBase) { }
}
}