From ac8996cefaa27359a6f62cc570484b501903e6e2 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Tue, 9 Jul 2024 06:10:12 +0530 Subject: added invoice note and total in words --- src/classes/user.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/classes/user.ts') diff --git a/src/classes/user.ts b/src/classes/user.ts index dc18717..d2fb3c4 100644 --- a/src/classes/user.ts +++ b/src/classes/user.ts @@ -6,7 +6,9 @@ export default class User { Email: string Website: string Username: string - IsVerified: bool + DefaultInvoiceNote: string + Details: string + IsVerified: boolean constructor() { this.FullName = '' @@ -16,6 +18,8 @@ export default class User { this.Email = '' this.Website = '' this.Username = '' + this.DefaultInvoiceNote = '' + this.Details = '' this.IsVerified = false } } -- cgit v1.2.3