ICuboidEntity
                        public interface ICuboidEntity : ISolidEntity, ITopologyEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
                    
                    
                    
using Autodesk.DesignScript.Runtime;
using System;
namespace Autodesk.DesignScript.Interfaces
{
    [SupressImportIntoVM]
    [ExportToProtoGeometryClass]
    public interface ICuboidEntity : ISolidEntity, ITopologyEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
    {
        double Length { get; }
        double Width { get; }
        double Height { get; }
    }
}
            