BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/IWebDriverHook.cs

9 lines
183 B
C#
Raw Normal View History

using BotSharp.Abstraction.Browsing.Models;
namespace BotSharp.Abstraction.Browsing;
public interface IWebDriverHook
{
Task<List<string>> GetUploadFiles(MessageInfo message);
}