aboutsummaryrefslogtreecommitdiff
path: root/src/classes/invoice_item.ts
blob: a7a0a8549ca94908c233b5a03c9b78b8f28f1cbf (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 InvoiceItem {
  UnitOfMeasure: string
  Quantity: string
  Name: string
  Description: string
  HSN: string
  UnitPrice: string
  GSTPercentage: string
  BrandName: string

  constructor() {
    this.Name = ''
    this.Description = ''
    this.HSN = ''
    this.UnitPrice = ''
    this.GSTPercentage = ''
    this.UnitOfMeasure = ''
    this.Quantity = ""
    this.BrandName = ""
  }
}