21 lines
424 B
C#
21 lines
424 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 WXRefreshContactSuccess : WXEvent
|
|||
|
{
|
|||
|
public WXRefreshContactSuccess(WeixinBase client) : base(client)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|