blob: dc0a4f9bbe8ed35c1bf235966acc3846356592d2 [file] [log] [blame]
package com.example.g8backend.service;
import com.example.g8backend.dto.ApiResponse;
public interface IPostRatingService {
void ratePost(Long userId, Long postId, Integer rating);
Double getAverageRating(Long postId);
Long getRatingUserCount(Long postId);
}