Ignore:
Timestamp:
11/23/21 14:58:44 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
e29cc2e
Parents:
ceaed42
Message:

adding photos

Location:
trip-planner-front/src/app/_models
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/src/app/_models/location.ts

    rceaed42 r59329aa  
     1
    12export class Location{
    23   
     
    78    priority: string;
    89    duration: number;
     10    photo: any[];
    911
    1012    constructor(){
     
    1517        this.priority = 'Location priority';
    1618        this.duration = 1;
     19        this.photo = [];
    1720    }
    1821}
Note: See TracChangeset for help on using the changeset viewer.