添加项目文件。
This commit is contained in:
22
KGdev.BI3D.Revit.Common/IGlobalStore.cs
Normal file
22
KGdev.BI3D.Revit.Common/IGlobalStore.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user