添加项目文件。
This commit is contained in:
15
KGdev.BI3D.Revit.Common/Models/LinkedDocumentInformation.cs
Normal file
15
KGdev.BI3D.Revit.Common/Models/LinkedDocumentInformation.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Autodesk.Revit.DB;
|
||||
|
||||
namespace KGdev.BI3D.Revit.Common.Models
|
||||
{
|
||||
public class LinkedDocumentInformation
|
||||
{
|
||||
public Document Document { get; set; }
|
||||
|
||||
public Transform TransformToRoot { get; set; }
|
||||
|
||||
public List<ElementId> PassedLinkInstanceIds { get; set; } = new List<ElementId>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user