diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-07-09 06:10:12 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-07-09 06:10:12 +0530 |
commit | ac8996cefaa27359a6f62cc570484b501903e6e2 (patch) | |
tree | 7bafe66c4b2297d45bc1171a3c95e44450631ec5 /src/classes | |
parent | 4cab86849f1739d001593a54790e9531bd54092a (diff) |
added invoice note and total in words
Diffstat (limited to 'src/classes')
-rw-r--r-- | src/classes/user.ts | 6 |
1 files changed, 5 insertions, 1 deletions
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 } } |