Files
oqtane.framework/Oqtane.Server/Infrastructure/IInstallationManager.cs
2019-10-09 12:06:53 -04:00

9 lines
174 B
C#

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