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 } }