export class Planner{ id: number; name: string; description: string; constructor(){ this.id = 1; this.name = 'Planner name'; this.description = 'Planner description'; } }