blob: ba437a70b41b1d6296ddd3076fa65428f2378d3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
export default class Item {
unitofmeasure: string
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.brandid = 0
}
}
|