export class Address {

  public id: number;
  public value: any;

  /**
   * 
   * @param {Number} id the address id
   * @param {*} value the value stored at this address
   */
  constructor (id: number, value: any) {
    this.id = id;
    this.value = value;
  }
}