namespace Pilz.Configuration { public interface ISettingsManager { string ConfigFilePath { get; set; } void Save(); void Load(); void Reset(); } }