2024-07-10 19:06:34 +00:00
|
|
|
using BotSharp.Abstraction.Agents;
|
|
|
|
|
using BotSharp.Plugin.EmailHandler.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.EmailHandler.Hooks
|
|
|
|
|
{
|
|
|
|
|
public class EmailHandlerUtilityHook : IAgentUtilityHook
|
|
|
|
|
{
|
|
|
|
|
public void AddUtilities(List<string> utilities)
|
|
|
|
|
{
|
2024-07-16 17:08:37 +00:00
|
|
|
utilities.Add(UtilityName.EmailHandler);
|
2024-07-10 19:06:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|