Files
KGdev.BI3D.Revit.Addin/KGdev.BI3D.Revit.Common/Models/LinkedDocumentInformation.cs

16 lines
373 B
C#
Raw Normal View History

2024-01-08 09:30:50 +08:00
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>();
}
}