Files
sct-overseerr/server/models/common.ts
2020-09-16 06:11:29 +00:00

12 lines
173 B
TypeScript

export interface ProductionCompany {
id: number;
logoPath?: string;
originCountry: string;
name: string;
}
export interface Genre {
id: number;
name: string;
}