15 lines
261 B
TypeScript
15 lines
261 B
TypeScript
export type Movie = {
|
|
id: number,
|
|
title: string
|
|
year: number
|
|
imdb_id: string
|
|
director: string
|
|
actors: string
|
|
plot: string
|
|
genre: string
|
|
mpaa_rating: string
|
|
critic_scores: string
|
|
poster: string
|
|
added_by: number
|
|
}
|
|
|