tijian_tieying/web/dccdc/Common/Deepleo.Weixin.SDK/Interface/IWeixinExecutor.cs
2025-02-20 12:14:39 +08:00

19 lines
377 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Deepleo.Weixin.SDK
{
public interface IWeixinExecutor
{
/// <summary>
/// 接受消息后返回XML
/// </summary>
/// <param name="message"></param>
/// <returns></returns>
string Execute(WeixinMessage message);
}
}