angular-docs-cn/public/docs/_examples/cb-a1-a2-quick-reference/ts/app/movie.ts

13 lines
235 B
TypeScript

/* Defines the movie entity */
export interface IMovie {
approvalRating: number;
hero: string;
imageurl: string;
movieId: number;
mpaa: string;
price: number;
releaseDate: string;
starRating: number;
title: string;
}