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

Last change on this file was 84d0fbb, checked in by Ema <ema_spirova@…>, 3 years ago

spring security 2.0

  • Property mode set to 100644
File size: 189 bytes
Line 
1export class Planner{
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.