Flow.Launcher/Flow.Launcher.Infrastructure/Storage/ISavable.cs
2021-06-21 21:04:19 +10:00

10 lines
No EOL
290 B
C#

using Flow.Launcher.Plugin;
namespace Flow.Launcher.Infrastructure.Storage
{
/// <summary>
/// Save plugin settings/cache,
/// todo should be merged into a abstract class intead of seperate interface
/// </summary>
public interface ISavable : ISettingsSavable { }
}