oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/IInstallationManager.cs

10 lines
204 B
C#

namespace Oqtane.Infrastructure
{
public interface IInstallationManager
{
void InstallPackages(string folders);
void UpgradeFramework();
void RestartApplication();
}
}