10 lines
No EOL
304 B
C#
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);
|
|
}
|
|
} |