source: trip-planner-front/src/app/_models/dto/plannerDto.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: 159 bytes
Line 
1
2export class PlannerDto{
3 name: string;
4 description: string;
5
6
7 constructor(){
8 this.name = '';
9 this.description = '';
10
11 }
12}
Note: See TracBrowser for help on using the repository browser.