Flow.Launcher/Wox.Core/Configuration/IPortable.cs
2020-02-21 08:27:46 +11:00

13 lines
No EOL
336 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);
}
}