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