NuvioStreaming/src/types/cast.ts

10 lines
No EOL
211 B
TypeScript

export interface Cast {
id: number;
name: string;
character: string;
profile_path: string | null;
biography?: string;
birthday?: string;
place_of_birth?: string;
known_for_department?: string;
}