dep08siasm/Adaptation/Shared/ParameterType.cs
Mike Phares 5cda494708 Infineon.EAF.Runtime v2.59.0
With .gitignore *.traineddata
2025-02-21 13:47:08 -07:00

10 lines
148 B
C#

namespace Adaptation.Shared;
public enum ParameterType
{
String = 0,
Integer = 2,
Double = 3,
Boolean = 4,
StructuredType = 5
}