source: trip-planner-front/src/app/_models/dto/plannerDto.ts@ 59329aa

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

add location to planner

  • Property mode set to 100644
File size: 199 bytes
Line 
1import { Location } from "../location";
2
3export class PlannerDto{
4 name: string;
5 description: string;
6
7
8 constructor(){
9 this.name = '';
10 this.description = '';
11
12 }
13}
Note: See TracBrowser for help on using the repository browser.