commentDeleteRequest.ts 91 B

1234
  1. // 댓글 삭제 DTO
  2. export default interface CommentDeleteRequest {
  3. commentID: number;
  4. };