add token expiry date to login response

This commit is contained in:
Anika Raemer 2025-09-26 19:42:18 +02:00
parent 5dd79374c1
commit fac606cf97
3 changed files with 18 additions and 4 deletions

View file

@ -6,4 +6,5 @@ import { UserDto } from "./UserDto.js";
export class LoginResponseDto {
userData?: UserDto;
token?: string;
expiryDate? : Date;
}