old_flsystem/类库/Chat.Framework/WXSdk/Events/WXRefreshContactSuccess.cs

21 lines
424 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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)
{
}
}
}