14 lines
248 B
TypeScript
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;
|
|
};
|