source: trip-planner-front/src/app/_models/dto/plannerLocationDto.ts@ 1ad8e64

Last change on this file since 1ad8e64 was ceaed42, checked in by Ema <ema_spirova@…>, 3 years ago

add location to planner

  • Property mode set to 100644
File size: 160 bytes
Line 
1
2export class PlannerLocationDto {
3 locationId: number;
4 plannerId: number;
5
6 constructor(){
7 this.locationId = 1;
8 this.plannerId = 1;
9 }
10}
Note: See TracBrowser for help on using the repository browser.