Flow.Launcher/Flow.Launcher.Infrastructure/Storage/ISavable.cs
2020-04-21 21:27:02 +10:00

11 lines
272 B
C#

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
{
void Save();
}
}