From ba751cdfe03e5ea68173f01247b34d412dd3456f Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Sat, 15 Jun 2024 13:40:00 -0500 Subject: [PATCH] Distribution crawling. --- .../BotSharp.Abstraction/BotSharp.Abstraction.csproj | 6 ++++++ .../Browsing/Models/BrowserActionArgs.cs | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 src/Infrastructure/BotSharp.Abstraction/Browsing/Models/BrowserActionArgs.cs diff --git a/src/Infrastructure/BotSharp.Abstraction/BotSharp.Abstraction.csproj b/src/Infrastructure/BotSharp.Abstraction/BotSharp.Abstraction.csproj index 65424adb..b03aa12b 100644 --- a/src/Infrastructure/BotSharp.Abstraction/BotSharp.Abstraction.csproj +++ b/src/Infrastructure/BotSharp.Abstraction/BotSharp.Abstraction.csproj @@ -10,6 +10,12 @@ $(SolutionDir)packages + + + + + + True diff --git a/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/BrowserActionArgs.cs b/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/BrowserActionArgs.cs new file mode 100644 index 00000000..1a6920c8 --- /dev/null +++ b/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/BrowserActionArgs.cs @@ -0,0 +1,6 @@ +namespace BotSharp.Abstraction.Browsing.Models; + +public class BrowserActionArgs +{ + +}