commentCreateRequest.ts 165 B

12345678
  1. // 댓글 등록 DTO
  2. export default interface CommentCreateRequest {
  3. postID: number;
  4. parentID?: number;
  5. mention?: string;
  6. content: string;
  7. isSecret: boolean;
  8. };