15 lines
423 B
C#
15 lines
423 B
C#
using TelegramBotBase.Base;
|
|
using TelegramBotBase.Form;
|
|
|
|
namespace TelegramBotBase.Experiments.ActionManager.Actions
|
|
{
|
|
public static class Int64Action_Extensions
|
|
{
|
|
|
|
public static void AddInt64Action(this ExternalActionManager manager, string method, Func<long, CallbackData, UpdateResult, MessageResult, Task> action)
|
|
{
|
|
manager.Add(new Int64Action(method, action));
|
|
}
|
|
}
|
|
}
|