13 lines
317 B
C#
13 lines
317 B
C#
using Avalonia.Controls;
|
|
|
|
namespace ModpackUpdater.Apps.Manager.Api.Model;
|
|
|
|
public interface IMainApi
|
|
{
|
|
IWorkspace? CurWorkspace { get; }
|
|
IActionSetInfos? CurActionSet { get; }
|
|
Window MainWindow { get; }
|
|
void UpdateItem(InstallAction action);
|
|
void UpdateItem(IActionSetInfos actionSetInfos);
|
|
}
|