import { ReportType } from '@/constants/forum'; // 게시글 신고 요청 DTO export default interface PostReportRequest { postID: number; type: ReportType; reason: string; };