17 lines
324 B
C#
17 lines
324 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Hncore.Wx.Open
|
|
{
|
|
/// <summary>
|
|
/// 请求消息接口
|
|
/// </summary>
|
|
public interface IMessageBase
|
|
{
|
|
string AppId { get; set; }
|
|
long CreateTime { get; set; }
|
|
RequestInfoType InfoType { get; }
|
|
Task<bool> Handler();
|
|
|
|
}
|
|
}
|