Flow.Launcher/Flow.Launcher.Core/Configuration/IPortable.cs
2024-03-24 13:41:07 -05:00

10 lines
202 B
C#

namespace Flow.Launcher.Core.Configuration
{
public interface IPortable
{
void EnablePortableMode();
void DisablePortableMode();
bool CanUpdatePortability();
}
}