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

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

signup/login server errors on front and remove location from planner

  • Property mode set to 100644
File size: 181 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= '';
10 this.description= '';
11 }
12}
Note: See TracBrowser for help on using the repository browser.