16 lines
308 B
C#
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);
|
|
}
|
|
|
|
}
|