Files
ShrlAlgoToolkit/RevitLess/PlatformType.cs

12 lines
151 B
C#
Raw Normal View History

2025-07-11 09:20:23 +08:00

namespace RevitLess
{
/// <summary>An enumerate to list Revit Platform Type. </summary>
public enum PlatformType
{
x86,
x64,
Unknown
}
}