export interface PLModel { plId: string tdesc: string edesc: string companyId: string } export class MyPLModel implements PLModel { plId: string; tdesc: string; edesc: string; companyId: string constructor(data?: Partial<PLModel>) { this.plId = data?.plId || "" this.tdesc = data?.tdesc || "" this.edesc = data?.edesc || "" this.companyId = data?.companyId || "" } }