source: trip-planner-front/src/app/_models/dto/userDto.ts@ 84d0fbb

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

spring security 2.0

  • Property mode set to 100644
File size: 266 bytes
Line 
1export class UserDto{
2
3 username: string;
4 fullName: string;
5 password: string;
6 confirmPassword: string;
7
8
9 constructor(){
10 this.username = '';
11 this.fullName = '';
12 this.password = '';
13 this.confirmPassword = '';
14
15 }
16}
Note: See TracBrowser for help on using the repository browser.