PowerToys/Wox.Infrastructure/Storage/IStorage.cs
2015-10-30 23:23:01 +00:00

9 lines
128 B
C#

namespace Wox.Infrastructure.Storage
{
public interface IStorage
{
void Load();
void Save();
}
}