BotSharp/src/Plugins/BotSharp.Plugin.WeChat/IMessageQueue.cs
2023-06-24 17:25:55 +08:00

13 lines
232 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Plugin.WeChat
{
public interface IMessageQueue
{
Task EnqueueAsync(WeChatMessage message);
}
}