21 lines
459 B
C#
21 lines
459 B
C#
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
|
|
);
|
|
}
|
|
}
|