CadParamPluging/Common/ParamValueType.cs
2025-12-17 10:04:08 +08:00

12 lines
172 B
C#

namespace CadParamPluging.Common
{
public enum ParamValueType
{
String = 0,
Int = 1,
Double = 2,
Bool = 3,
Enum = 4
}
}