export default class Item { unitofmeasure: string hasdecimalquantity: boolean name: string description: string hsn: string unitprice: string gstpercentage: string brandid: number constructor() { this.name = '' this.description = '' this.hsn = '' this.unitprice = '' this.gstpercentage = '' this.unitofmeasure = '' this.hasdecimalquantity = false this.brandid = 0 } }