blob: dc187174bfcbaeddcb9b2b83af97d274a7a6e401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
}
}
|