feat(api): tv details endpoint

This commit is contained in:
sct
2020-09-16 06:11:29 +00:00
parent b1761484cb
commit a3beeede7e
8 changed files with 342 additions and 24 deletions

11
server/models/common.ts Normal file
View File

@@ -0,0 +1,11 @@
export interface ProductionCompany {
id: number;
logoPath?: string;
originCountry: string;
name: string;
}
export interface Genre {
id: number;
name: string;
}