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

Last change on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

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