10 lines
232 B
C#
10 lines
232 B
C#
namespace Oqtane.Infrastructure.Interfaces
|
|
{
|
|
public interface IInstallationManager
|
|
{
|
|
void InstallPackages(string folders, bool restart);
|
|
void UpgradeFramework();
|
|
void RestartApplication();
|
|
}
|
|
}
|