Files
juipnet/Infrastructure/WxApi/Notice/MessageBase.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

17 lines
340 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();
}
}