mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
12 lines
173 B
TypeScript
12 lines
173 B
TypeScript
export interface ProductionCompany {
|
|
id: number;
|
|
logoPath?: string;
|
|
originCountry: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface Genre {
|
|
id: number;
|
|
name: string;
|
|
}
|