address.ts 267 B

123456789101112131415
  1. export class Address {
  2. public id: number;
  3. public value: any;
  4. /**
  5. *
  6. * @param {Number} id the address id
  7. * @param {*} value the value stored at this address
  8. */
  9. constructor (id: number, value: any) {
  10. this.id = id;
  11. this.value = value;
  12. }
  13. }