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