diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-04-06 10:26:44 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-04-06 10:26:44 +0530 |
commit | 63823d41addec00556a93eabffa455630d169ca6 (patch) | |
tree | 2b548e2a6b00ae7ef3859e4a4cb807329a62a4a2 /src/classes | |
parent | a26ab9f60314420aad1c7d2a328d299f503532fa (diff) |
added basic (and incomplete) print preview template
Diffstat (limited to 'src/classes')
-rw-r--r-- | src/classes/user.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/classes/user.ts b/src/classes/user.ts new file mode 100644 index 0000000..dc18717 --- /dev/null +++ b/src/classes/user.ts @@ -0,0 +1,21 @@ +export default class User { + FullName: string + FirmName: string + Gstin: string + Phone: string + Email: string + Website: string + Username: string + IsVerified: bool + + constructor() { + this.FullName = '' + this.FirmName = '' + this.Gstin = '' + this.Phone = '' + this.Email = '' + this.Website = '' + this.Username = '' + this.IsVerified = false + } +} |