blob: 3c48aa3fa2dcf810a83def8c4de3cf1a66f5681c [file] [log] [blame]
'use strict';
import {SchemaProperty} from "./aschema-property";
export class SchemaAttributeGroupModel {
property:SchemaAttribute;
constructor(schemaAttribute?:SchemaAttribute) {
this.property = schemaAttribute;
}
}
export class SchemaAttribute extends SchemaProperty {
}