export interface ITemplateVariable { id?: string; productTemplateId?: string; } export class TemplateVariable implements ITemplateVariable { constructor(public id?: string, public productTemplateId?: string) {} }