12 lines
151 B
C#
12 lines
151 B
C#
|
|
|
|||
|
|
namespace RevitLess
|
|||
|
|
{
|
|||
|
|
/// <summary>An enumerate to list Revit Platform Type. </summary>
|
|||
|
|
public enum PlatformType
|
|||
|
|
{
|
|||
|
|
x86,
|
|||
|
|
x64,
|
|||
|
|
Unknown
|
|||
|
|
}
|
|||
|
|
}
|