commentUpdateRequest.ts 165 B

12345678
  1. // 댓글 수정 DTO
  2. export default interface CommentUpdateRequest {
  3. postID: number;
  4. commentID: number;
  5. mention?: string;
  6. content: string;
  7. isSecret: boolean;
  8. };