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