source:
trip-planner-front/src/app/_models/country.ts
Last change on this file was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 143 bytes |
Line | |
---|---|
1 | export class Country{ |
2 | |
3 | id:number; |
4 | name:string; |
5 | |
6 | constructor(){ |
7 | this.id=1; |
8 | this.name='Country name'; |
9 | } |
10 | |
11 | |
12 | |
13 | |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.