logging abstraction

This commit is contained in:
Shaun Walker
2019-10-26 11:00:45 -04:00
parent f59ec7bdac
commit e25bbe2e24
23 changed files with 79 additions and 72 deletions

View File

@ -2,7 +2,7 @@
{
public interface IInstallationManager
{
void InstallPackages(string Folders);
void InstallPackages(string Folders, bool Restart);
void RestartApplication();
}
}