2025-08-04 16:18:30 +09:00
|
|
|
import { ProfileResponseDto } from 'src/profiles/dto/profile-response.dto';
|
2025-07-18 15:02:46 +09:00
|
|
|
export declare class UserInfoResponseDto {
|
|
|
|
id: number;
|
|
|
|
name: string;
|
|
|
|
email?: string;
|
2025-07-25 17:30:34 +09:00
|
|
|
profile?: ProfileResponseDto;
|
|
|
|
}
|