import { UserDto } from "./UserDto"; /** * Response to a successful login */ export class LoginResponseDto { userData: UserDto; token: string; }