mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-29 16:23:05 +00:00
10 lines
204 B
C#
10 lines
204 B
C#
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IInstallationManager
|
|
{
|
|
void InstallPackages(string folders);
|
|
void UpgradeFramework();
|
|
void RestartApplication();
|
|
}
|
|
}
|