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

14 lines
248 B
TypeScript

export type Movie = {
id: number;
title: string;
added_by: number;
imdb_id: string;
year: number;
critic_score: string;
genre: string;
director: string;
actors: string;
plot: string;
poster: string;
last_watched: string;
};