Files
juipnet/Infrastructure/WxApi/Notice/MessageBase.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

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