Files
juipnet/Infrastructure/WxApi/Notice/MessageBase.cs

17 lines
324 B
C#
Raw Normal View History

2020-12-28 14:55:48 +08:00
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();
}
}