Flow.Launcher/Wox.Core/Configuration/IPortable.cs
2020-02-21 22:06:04 +11:00

14 lines
No EOL
414 B
C#

namespace Wox.Core.Configuration
{
public interface IPortable
{
void EnablePortableMode();
void DisablePortableMode();
void RemoveShortcuts();
void RemoveUninstallerEntry();
bool IsPortableModeEnabled();
void MoveUserDataFolder(string fromLocation, string toLocation);
void VerifyUserDataAfterMove(string fromLocation, string toLocation);
}
}