using Insight.TelegramBot.Models; namespace Nocr.TelegramClient.AppServices.Bots.MessageDispatcher; public interface IMessageDispatcherQueue { public void Enqueue(BotMessage message); public bool TryDequeue(out BotMessage? message); }