26 lines
565 B
C#
26 lines
565 B
C#
using PCRobot.Pack;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Chat.Framework.PCRobotSDK.WechatEvents
|
|
{
|
|
/// <summary>
|
|
/// 新用户入群事件
|
|
/// </summary>
|
|
public class WechatNewMemerEvents : ChatEvent
|
|
{
|
|
/// <summary>
|
|
/// 新用户入群信息
|
|
/// </summary>
|
|
public WechatNewMemer Data { get;private set; }
|
|
|
|
public WechatNewMemerEvents(WechatNewMemer data)
|
|
{
|
|
this.Data = data;
|
|
}
|
|
}
|
|
}
|