12 lines
392 B
C#
12 lines
392 B
C#
namespace RhSolutions.Services;
|
|
|
|
public interface IAddInConfiguration
|
|
{
|
|
public string GetPriceListPath();
|
|
public void SetPriceListPath(string value);
|
|
public string GetPriceListFileName();
|
|
public Dictionary<string, string> GetPriceListHeaders();
|
|
public delegate void SettingsHandler();
|
|
public event SettingsHandler OnSettingsChange;
|
|
public void SaveSettings();
|
|
} |