Interface IBotActionViewModel
A view model for a bot action.
Namespace: Phoenix.BotBrain
Assembly: Phoenix.Plugin.BotBrain.BotScripting.dll
Syntax
public interface IBotActionViewModel
Properties
View SourceAction
Gets or sets the underlying action.
Declaration
object? Action { get; set; }
Property Value
Type | Description |
---|---|
object |
Bot
Gets or sets the bot associated with this action.
Declaration
IBotViewModel? Bot { get; set; }
Property Value
Type | Description |
---|---|
IBotViewModel |
IsRunning
Gets or sets a value indicating whether or not the action is running.
Declaration
bool IsRunning { get; set; }
Property Value
Type | Description |
---|---|
bool |
Name
Gets or sets the action name.
Declaration
string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |