﻿export class Iv3dObjectProperty {
    prop1: string;
    prop2: string;
    type: string;
    label: string;
    min: number;
    max: number;
    value: any;
    step: number;
    deg: boolean; // TODO
    percent: boolean; // TODO
    values: any[] = null;
    readOnly: boolean;
    hidden: boolean;
}
