namespace PhoenixLib.Configuration { /// /// A file system based configuration helper /// public interface IConfigurationHelper { T Load(string path) where T : class, new(); T Load(string path, bool createIfNotExists) where T : class, new(); T Load(string path, T defaultValue) where T : class, new(); void Save(string path, T value); } }