2024-03-08 13:19:13 +00:00
|
|
|
namespace BotSharp.Abstraction.Browsing.Models;
|
|
|
|
|
|
|
|
|
|
public class BrowserActionParams
|
|
|
|
|
{
|
|
|
|
|
public Agent Agent { get; set; }
|
|
|
|
|
public BrowsingContextIn Context { get; set; }
|
2024-04-09 03:38:56 +00:00
|
|
|
public string ContextId { get; set; }
|
2024-03-08 13:19:13 +00:00
|
|
|
public string MessageId { get; set; }
|
|
|
|
|
|
2024-04-09 03:38:56 +00:00
|
|
|
public BrowserActionParams(Agent agent, BrowsingContextIn context, string contextId, string messageId)
|
2024-03-08 13:19:13 +00:00
|
|
|
{
|
|
|
|
|
Agent = agent;
|
|
|
|
|
Context = context;
|
2024-04-09 03:38:56 +00:00
|
|
|
ContextId = contextId;
|
2024-03-08 13:19:13 +00:00
|
|
|
MessageId = messageId;
|
|
|
|
|
}
|
|
|
|
|
}
|