source: trip-planner-front/src/app/_models/location.ts

Last change on this file was bdd6491, checked in by Ema <ema_spirova@…>, 3 years ago

pre final presentation

  • Property mode set to 100644
File size: 494 bytes
Line 
1
2export class Location{
3
4 id: number;
5 name: string;
6 description: string;
7 address: string;
8 priority: string;
9 duration: number;
10 trivia: string;
11 photo: any[];
12
13 constructor(){
14 this.id = 1;
15 this.name = 'Location name';
16 this.description = 'Location description';
17 this.address = 'Location addreess';
18 this.priority = 'Location priority';
19 this.duration = 1;
20 this.trivia = '';
21 this.photo = [];
22 }
23}
Note: See TracBrowser for help on using the repository browser.