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

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

editing location-form on frontend and backend

  • Property mode set to 100644
File size: 127 bytes
Line 
1export class Region{
2
3 id:number;
4 name: string;
5
6 constructor(){
7 this.id = 1;
8 this.name = '';
9 }
10}
Note: See TracBrowser for help on using the repository browser.