export class ItemProperty { propertyName: string propertyDescription: string property: number constructor(propertyName: string, propertyDescription: string, property: number) { this.propertyName = propertyName; this.propertyDescription = propertyDescription; this.property = property; } }