source: trip-planner-front/src/app/_models/planner.ts@ 188ee53

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

initial commit

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