ModelHandle/source/model/property.js
2021-06-20 11:31:39 +02:00

19 lines
255 B
JavaScript

OV.PropertyType =
{
Text : 1,
Integer : 2,
Number : 3,
Percent : 4,
Color : 5
};
OV.Property = class
{
constructor (type, name, value)
{
this.type = type;
this.name = name;
this.value = value;
}
};