export class Warehouse { street1: string = ''; city: string = ''; state: string = ''; zip: string = ''; constructor() { this.street1 = ''; this.city = ''; this.state = ''; this.zip = ''; } }