igniteui-webcomponents-datasources
Version:
Reference custom data providers for the Ignite UI Web Components data source.
28 lines (27 loc) • 562 B
JavaScript
export class EntityProperty {
constructor(name, schemaType) {
this._name = null;
this._isNullable = false;
this._type = null;
this.name = name;
this.type = schemaType;
}
get name() {
return this._name;
}
set name(value) {
this._name = value;
}
get isNullable() {
return this._isNullable;
}
set isNullable(value) {
this._isNullable = value;
}
get type() {
return this._type;
}
set type(value) {
this._type = value;
}
}