Files
mtdb_movie/resources/client/titles/models/production-country.ts
T
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

11 lines
247 B
TypeScript
Executable File

export const PRODUCTION_COUNTRY_MODEL = 'production_country';
export interface ProductionCountry {
id: number;
name: string;
display_name: string;
updated_at: string;
created_at: string;
model_type: typeof PRODUCTION_COUNTRY_MODEL;
}