19 lines
402 B
C#
19 lines
402 B
C#
|
using Chat.Framework.WXSdk.Implement;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Chat.Framework.WXSdk.Events
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 微信更新信息事件
|
|||
|
/// </summary>
|
|||
|
public class WXRefreshUser : WXEvent
|
|||
|
{
|
|||
|
public WXRefreshUser(WeixinBase wxclient) : base(wxclient)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|