mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-15 04:11:38 +00:00
14 lines
306 B
C#
14 lines
306 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IInstallationManager
|
|
{
|
|
void InstallPackages();
|
|
bool UninstallPackage(string PackageName);
|
|
int RegisterAssemblies();
|
|
Task UpgradeFramework();
|
|
void RestartApplication();
|
|
}
|
|
}
|