proper finish updates collector

This commit is contained in:
2024-09-26 09:30:12 +02:00
parent 2f9d60f1a8
commit f64c8cdba0
4 changed files with 175 additions and 32 deletions

View File

@@ -2,7 +2,13 @@
public interface IMainApi
{
public IWorkspace? CurWorkspace { get; }
public IActionSetInfos? CurActionSet { get; }
public Form MainWindow { get; }
IWorkspace? CurWorkspace { get; }
IActionSetInfos? CurActionSet { get; }
Form MainWindow { get; }
void UpdateItem(InstallAction action);
void UpdateItem(IActionSetInfos actionSetInfos);
}