Files
eveo/Eve-O-Preview/Configuration/IConfigurationStorage.cs
2016-06-02 22:48:51 +03:00

8 lines
125 B
C#

namespace EveOPreview.Configuration
{
public interface IConfigurationStorage
{
void Load();
void Save();
}
}