banking-bot/BankingBot/Contracts/IScriptManager.cs
2017-02-10 14:58:10 +00:00

10 lines
No EOL
304 B
C#

using System.Collections.Generic;
namespace BankingBot.Contracts
{
public interface IScriptManager
{
T Execute<T>(string scriptPath, Dictionary<string, string> data, string[] scripts);
void Execute(string scriptPath, Dictionary<string, string> data, string[] scripts);
}
}