aboutsummaryrefslogtreecommitdiff
path: root/src/classes
diff options
context:
space:
mode:
Diffstat (limited to 'src/classes')
-rw-r--r--src/classes/user.ts6
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
}
}