mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
14 lines
215 B
C#
14 lines
215 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Wox.Infrastructure.Storage
|
|
{
|
|
public interface IStorage
|
|
{
|
|
void Load();
|
|
void Save();
|
|
}
|
|
}
|