Changeset ceaed42 for trip-planner-front/src/app/_models
- Timestamp:
- 11/11/21 12:59:26 (3 years ago)
- Branches:
- master
- Children:
- 59329aa
- Parents:
- 6c1585f
- Location:
- trip-planner-front/src/app/_models/dto
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/_models/dto/plannerDto.ts
r6c1585f rceaed42 1 import { Location } from "../location"; 2 1 3 export class PlannerDto{ 2 4 name: string; 3 5 description: string; 4 locationList: any[]; 6 5 7 6 8 constructor(){ 7 9 this.name = ''; 8 10 this.description = ''; 9 this.locationList = [];11 10 12 } 11 13 }
Note:
See TracChangeset
for help on using the changeset viewer.