src/dto/1.0.0/user/login.response.dto.ts
Properties |
accessToken |
Type : string
|
Defined in src/dto/1.0.0/user/login.response.dto.ts:7
|
user |
Type : User
|
Defined in src/dto/1.0.0/user/login.response.dto.ts:6
|
import { User } from '../../../entity/user.entity';
export class LoginResponseDTO {
user: User
accessToken: string
}