using System.Configuration; namespace RhSolutions.Services; public interface IAddInConfiguration { public string GetPriceListPath(); public string GetPriceListFileName(); public Dictionary GetPriceListParameters(); public event SettingChangingEventHandler OnSettingsChange; public void SetPriceListPath(string value); public void SaveSettings(); }