13 lines
389 B
C#
13 lines
389 B
C#
using System.Configuration;
|
|
|
|
namespace RhSolutions.Services;
|
|
|
|
public interface IAddInConfiguration
|
|
{
|
|
public string GetPriceListPath();
|
|
public string GetPriceListFileName();
|
|
public Dictionary<string, string> GetPriceListHeaders();
|
|
public event SettingChangingEventHandler OnSettingsChange;
|
|
public void SetPriceListPath(string value);
|
|
public void SaveSettings();
|
|
} |