source:
trip-planner-front/src/app/_models/city.ts
Last change on this file was b738035, checked in by , 3 years ago | |
---|---|
|
|
File size: 181 bytes |
Line | |
---|---|
1 | export 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.