添加项目文件。
This commit is contained in:
20
KGdev.BI3D.Revit.Common/IExporter.cs
Normal file
20
KGdev.BI3D.Revit.Common/IExporter.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Autodesk.Revit.DB;
|
||||
using KGdev.BI3D.Revit.Common.Models;
|
||||
|
||||
namespace KGdev.BI3D.Revit.Common
|
||||
{
|
||||
public interface IExporter
|
||||
{
|
||||
string Description { get; }
|
||||
|
||||
List<IOptionDefinition> Options { get; }
|
||||
|
||||
Dictionary<string, LinkedElementIdPath> Export(
|
||||
View3D objectsView,
|
||||
string path,
|
||||
Dictionary<string, object> optionValues
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user