3c7f0677创建于 2020年4月21日历史提交

namespace Flow.Launcher.Core.Configuration
{
    public interface IPortable
    {
        void EnablePortableMode();
        void DisablePortableMode();
        void RemoveShortcuts();
        void RemoveUninstallerEntry();
        void CreateShortcuts();
        void CreateUninstallerEntry();
        void MoveUserDataFolder(string fromLocation, string toLocation);
        void VerifyUserDataAfterMove(string fromLocation, string toLocation);
        bool CanUpdatePortability();
    }
}