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

18 lines
344 B
TypeScript
Raw Normal View History

import type {MovieCriticScore} from "~/types/movie-critic-score";
2026-02-16 19:12:00 -06:00
export type Movie = {
id: number
2026-02-16 19:12:00 -06:00
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: Array<MovieCriticScore>
2026-02-16 19:12:00 -06:00
poster: string
added_by: number
}