oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/IInstallationManager.cs
Pavel Vesely 5b3feaf26f Server naming fixes and cleanup
Server is now completely cleaned up and without warnings
2020-03-15 11:53:24 +01:00

10 lines
232 B
C#

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