LengthUnit
using Autodesk.DesignScript.Runtime;
using System;
namespace DynamoUnits
{
[SupressImportIntoVM]
[IsVisibleInDynamoLibrary(false)]
[Obsolete("This enum will be removed in Dynamo 3.0 - please use the Length Quantity type and Quantity.Units property")]
public enum LengthUnit
{
DecimalInch,
FractionalInch,
DecimalFoot,
FractionalFoot,
Millimeter,
Centimeter,
Meter
}
}