aboutsummaryrefslogtreecommitdiff
path: root/src/classes/invoice_item.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/classes/invoice_item.ts')
-rw-r--r--src/classes/invoice_item.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/classes/invoice_item.ts b/src/classes/invoice_item.ts
new file mode 100644
index 0000000..a7a0a85
--- /dev/null
+++ b/src/classes/invoice_item.ts
@@ -0,0 +1,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 = ""
+ }
+}