23 lines
477 B
C#
23 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace KGdev.BI3D.Revit.Common
|
|
{
|
|
public interface IGlobalStore
|
|
{
|
|
string GetToken();
|
|
|
|
void SetToken(string token);
|
|
|
|
string GetKey();
|
|
|
|
void SetKey(string key);
|
|
|
|
string GetAppTempDirectoryPath();
|
|
|
|
Dictionary<string, object> GetDefaultExporterChosenOptionValues();
|
|
|
|
void SetDefaultExporterChosenOptionValues(Dictionary<string, object> valuesDictionary);
|
|
}
|
|
}
|