movieComment.ts 226 Bytes
import type { MovieInterface } from "~/interfaces/movie";

export interface MovieCommentInterface {
  createdAt: string;
  username: string;
  message: string;
  rating: number;
  movie_id: unknown;
  movie: MovieInterface;
}