iv-3d-lib
Version:
A reusable ThreeJS library providing features for Ivee 3D Editor.
15 lines (13 loc) • 391 B
text/typescript
import { FormMetaField } from './form-meta-field';
import { FormMetaView } from './form-meta-view';
import { ModelBase } from './model-base';
export class FormMeta extends ModelBase {
id: string;
name: string;
label: string;
description: string;
tableName: string;
listName: string;
fields: FormMetaField[] = [];
views: FormMetaView[] = [];
}