PowerToys/Wox.Infrastructure/Storage/ISavable.cs

12 lines
262 B
C#
Raw Normal View History

namespace Wox.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();
}
}