8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { ProfileResponseDto } from 'src/profiles/dto/profile-response.dto';
|
|
export declare class UserInfoResponseDto {
|
|
id: number;
|
|
name: string;
|
|
email?: string;
|
|
profile?: ProfileResponseDto;
|
|
}
|