Flow.Launcher/Flow.Launcher.Core/Configuration/IPortable.cs

11 lines
202 B
C#
Raw Permalink Normal View History


2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Core.Configuration
{
public interface IPortable
{
void EnablePortableMode();
void DisablePortableMode();
bool CanUpdatePortability();
}
2024-03-24 18:41:07 +00:00
}