mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
9 lines
128 B
C#
9 lines
128 B
C#
namespace Wox.Infrastructure.Storage
|
|
{
|
|
public interface IStorage
|
|
{
|
|
void Load();
|
|
void Save();
|
|
}
|
|
}
|