BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/IWebPageResponseHook.cs
2024-07-22 15:45:01 -05:00

10 lines
279 B
C#

using BotSharp.Abstraction.Browsing.Models;
namespace BotSharp.Abstraction.Browsing;
public interface IWebPageResponseHook
{
void OnDataFetched(MessageInfo message, string url, string postData, string responsData);
T? GetResponse<T>(MessageInfo message, string url);
}