25 lines
505 B
C#
25 lines
505 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 IDataExporter
|
|
{
|
|
string Name { get; }
|
|
|
|
string Description { get; }
|
|
|
|
string Extension { get; }
|
|
|
|
List<IOptionDefinition> Options { get; }
|
|
|
|
void Export(
|
|
Document rootDocument,
|
|
List<LinkedElementIdPath> exportedElementIdPaths,
|
|
string path
|
|
);
|
|
}
|
|
}
|