Files
speckle-sharp-connectors/Sdk/Speckle.Connectors.Common/Operations/Receive/RootObjectUnpackerResult.cs
T
Oğuzhan Koral 744b185cfe Feat(revit): proxify levels with their all props (#940)
* Unpack levels as proxy

* Dynamically attach elevation and units to data object

* Do not add level properties to collection

* Bump SDK to 3.4.3
2025-06-23 17:48:18 +03:00

16 lines
582 B
C#

using Speckle.Objects.Other;
using Speckle.Sdk.Models.GraphTraversal;
using Speckle.Sdk.Models.Instances;
using Speckle.Sdk.Models.Proxies;
namespace Speckle.Connectors.Common.Operations.Receive;
public record RootObjectUnpackerResult(
IReadOnlyCollection<TraversalContext> ObjectsToConvert,
IReadOnlyCollection<InstanceDefinitionProxy>? DefinitionProxies,
IReadOnlyCollection<GroupProxy>? GroupProxies,
IReadOnlyCollection<RenderMaterialProxy>? RenderMaterialProxies,
IReadOnlyCollection<ColorProxy>? ColorProxies,
IReadOnlyCollection<LevelProxy>? LevelProxies
);