16 lines
373 B
C#
16 lines
373 B
C#
|
|
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>();
|
|||
|
|
}
|
|||
|
|
}
|