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