blob: ea82f8f3de887687c2fe33d41998895fefcad865 [file] [log] [blame]
package com.example.g8backend.service;
import com.example.g8backend.entity.Comment;
import java.util.List;
public interface ICommentService {
void createComment(Long postId, Long userId, String content, Long parentCommentId);
List<Comment> getCommentsByPostId(Long postId);
List<Comment> getReplies(Long parentCommentId, int depth);
boolean deleteComment(Long commentId);
}