Files
tryFullStack/backend/dist/users/dto/user-info-response.dto.d.ts

8 lines
209 B
TypeScript
Raw Normal View History

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;
}