blob: 271eb3d5ae5430291aae2f0e8ada725f1ad9fc86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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
}
}
|