tns-template-master-detail-progress-ng
Version:
Master-detail interface to display tables from a Progress backend and inspect and edit selected records.
20 lines (17 loc) • 508 B
text/typescript
// tslint:disable variable-name
export class State {
// Keep _id in the model until we resolve id issue
_id: string;
id: string;
State: string;
StateName: string;
Region: string;
constructor(options: any) {
// Keep _id in the model until we resolve id issue
this._id = options._id;
this.id = options.id;
this.State = options.State;
this.StateName = options.StateName;
this.Region = options.Region;
}
}