source:
trip-planner-front/src/app/_models/dto/userDto.ts@
bdd6491
Last change on this file since bdd6491 was 84d0fbb, checked in by , 3 years ago | |
---|---|
|
|
File size: 266 bytes |
Line | |
---|---|
1 | export 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.