blob: d2fb3c45ef30377766424659b02aeb01d4226dbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
export default class User {
FullName: string
FirmName: string
Gstin: string
Phone: string
Email: string
Website: string
Username: string
DefaultInvoiceNote: string
Details: string
IsVerified: boolean
constructor() {
this.FullName = ''
this.FirmName = ''
this.Gstin = ''
this.Phone = ''
this.Email = ''
this.Website = ''
this.Username = ''
this.DefaultInvoiceNote = ''
this.Details = ''
this.IsVerified = false
}
}
|