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

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

adding photos

  • Property mode set to 100644
File size: 448 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 photo: any[];
11
12 constructor(){
13 this.id = 1;
14 this.name = 'Location name';
15 this.description = 'Location description';
16 this.address = 'Location addreess';
17 this.priority = 'Location priority';
18 this.duration = 1;
19 this.photo = [];
20 }
21}
Note: See TracBrowser for help on using the repository browser.