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