2024-01-18 19:41:03 +01:00

16 lines
308 B
C#

using TelegramBotBase.Base;
using TelegramBotBase.Interfaces;
using TelegramBotBase.Sessions;
namespace DemoBot.ActionManager
{
public interface IExternalAction
{
bool DoesFit(string raw_action);
Task DoAction(UpdateResult ur, MessageResult mr, DeviceSession session);
}
}