Thing addProperty(...) doesn't work
Let me preface this by "I know i must be doing something wrong".
Thing t = new Thing();
t.addProperty(new PropertyDefinition("myProperty", "myPropertyDescription", BaseTypes.Boolean));
InfoTable pd = t.GetPropertyDefinition("myProperty"); // unexpectedly returns null
This seems so basic and trivial. What am i doing wrong?

