mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
9 lines
128 B
C#
9 lines
128 B
C#
namespace Wox.Infrastructure.Storage
|
|
{
|
|
public interface IStorage
|
|
{
|
|
void Load();
|
|
void Save();
|
|
}
|
|
}
|