source: trip-planner-front/src/app/_models/city.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: 206 bytes
Line 
1export class City{
2
3 id:number;
4 name:string;
5 description:string;
6
7 constructor(){
8 this.id = 1;
9 this.name= 'City name';
10 this.description= 'City description';
11 }
12}
Note: See TracBrowser for help on using the repository browser.