PowerToys/src/modules/launcher/Wox.Infrastructure/Storage/ISavable.cs
2020-05-25 17:27:13 -07:00

12 lines
263 B
C#

namespace Wox.Infrastructure.Storage
{
/// <summary>
/// Save plugin settings/cache,
/// todo should be merged into a abstract class instead of separate interface
/// </summary>
public interface ISavable
{
void Save();
}
}