movie-night-web/app/types/movie.ts
2026-02-16 19:12:00 -06:00

14 lines
244 B
TypeScript

export type Movie = {
id: number,
title: string
imdb_id: string
director: string
actors: string
plot: string
genre: string
mpaa_rating: string
critic_scores: string
poster: string
added_by: number
}