postReportRequest.ts 180 B

12345678
  1. import { ReportType } from '@/constants/forum';
  2. // 게시글 신고 요청 DTO
  3. export default interface PostReportRequest {
  4. postID: number;
  5. type: ReportType;
  6. reason: string;
  7. };