2018-09-21 22:50:34 +00:00
|
|
|
|
using System.Collections.Generic;
|
2015-04-02 17:23:08 +00:00
|
|
|
|
|
|
|
|
|
namespace AsterNET.Manager
|
|
|
|
|
{
|
2018-09-21 22:50:34 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// IActionVariable
|
|
|
|
|
/// </summary>
|
2015-04-02 17:23:08 +00:00
|
|
|
|
interface IActionVariable
|
|
|
|
|
{
|
|
|
|
|
Dictionary<string, string> GetVariables();
|
|
|
|
|
void SetVariables(Dictionary<string, string> vars);
|
|
|
|
|
}
|
|
|
|
|
}
|