source: trip-planner-front/src/app/_models/dto/plannerDto.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: 207 bytes
Line 
1export class PlannerDto{
2 name: string;
3 description: string;
4 locationList: any[];
5
6 constructor(){
7 this.name = '';
8 this.description = '';
9 this.locationList = [];
10 }
11}
Note: See TracBrowser for help on using the repository browser.