source: trip-planner-front/src/app/_models/planner.ts@ 6c1585f

Last change on this file since 6c1585f was 6a80231, checked in by Ema <ema_spirova@…>, 3 years ago

create initial planner and routing with angular

  • Property mode set to 100644
File size: 184 bytes
Line 
1export class Planner{
2 id: number;
3 name: string;
4 description: string;
5
6 constructor(){
7 this.id = 1;
8 this.name = '';
9 this.description = '';
10 }
11}
Note: See TracBrowser for help on using the repository browser.