added movie count to lists index

This commit is contained in:
Edward Tirado Jr 2025-04-07 00:44:51 -05:00
parent 21ad4d3da3
commit ffa8706ed1
2 changed files with 4 additions and 3 deletions

View file

@ -2,5 +2,6 @@ export type MovieList = {
id: number;
name: string;
public: boolean;
owner: number;
movie_count: number;
};