29 lines
646 B
C#
29 lines
646 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Chat.Framework.WXSdk.Implement;
|
|||
|
|
|||
|
namespace Chat.Framework.WXSdk.Events
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 微信基础事件
|
|||
|
/// </summary>
|
|||
|
public class WXEvent : ChatEvent
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 微信基类
|
|||
|
/// </summary>
|
|||
|
public WeixinBase Client { get; private set; }
|
|||
|
/// <summary>
|
|||
|
/// 构造方法
|
|||
|
/// </summary>
|
|||
|
/// <param name="client"></param>
|
|||
|
public WXEvent(WeixinBase client)
|
|||
|
{
|
|||
|
this.Client = client;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|