diff --git a/Rhino/Speckle.Rhino.Interfaces/RhinoCurve.cs b/Rhino/Speckle.Rhino.Interfaces/RhinoCurve.cs index 23c206cc..176d3910 100644 --- a/Rhino/Speckle.Rhino.Interfaces/RhinoCurve.cs +++ b/Rhino/Speckle.Rhino.Interfaces/RhinoCurve.cs @@ -5,8 +5,8 @@ namespace Speckle.Rhino7.Interfaces; public interface IRhinoDoc { double ModelAbsoluteTolerance { get; } + string Name { get; } RhinoUnitSystem ModelUnitSystem { get; } - IRhinoViewTable Views { get; } IRhinoLayerTable Layers { get; } IRhinoObjectTable Objects { get; } @@ -51,6 +51,7 @@ public interface IRhinoLayer : IRhinoModelComponent { IRhinoLayer[]? GetChildren(); int Index { get; } + string FullPath { get; } Guid Id { get; } }