1234567891011121314151617 |
- export class Address {
- public id: number;
- public value: any;
- public is_var: boolean; // TODO Remove this line
- /**
- *
- * @param {Number} id the address id
- * @param {*} value the value stored at this address
- */
- constructor (id: number, value: any, is_var = false) {
- this.id = id;
- this.value = value;
- this.is_var = is_var;
- }
- }
|