19 lines
377 B
C#
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);
|
|
|
|
}
|
|
}
|