10 lines
221 B
C#
10 lines
221 B
C#
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IInstallationManager
|
|
{
|
|
void InstallPackages(string Folders, bool Restart);
|
|
void UpgradeFramework();
|
|
void RestartApplication();
|
|
}
|
|
}
|