Renamed IScriptable to IScriptContainer, added Stop() function to Calls

This commit is contained in:
2025-08-31 03:02:43 +02:00
parent 92bf48d06a
commit 0647f10ca1
7 changed files with 29 additions and 8 deletions

View File

@@ -19,6 +19,7 @@ public interface ICall
public void Enable();
public void Disable();
public void Dispose();
public void Stop();
public string Name { get; set; }
public bool IsEnabled { get; set; }
public bool IsExecuting { get; set; }

View File

@@ -1,6 +1,6 @@
namespace Indexer.Models;
public interface IScriptable
public interface IScriptContainer
{
ScriptToolSet ToolSet { get; set; }
ScriptUpdateInfo UpdateInfo { get; set; }