movie-night-web/app/types/movie.ts

16 lines
261 B
TypeScript
Raw Normal View History

2026-02-16 19:12:00 -06:00
export type Movie = {
id: number,
title: string
year: number
2026-02-16 19:12:00 -06:00
imdb_id: string
director: string
actors: string
plot: string
genre: string
mpaa_rating: string
critic_scores: string
poster: string
added_by: number
}