handle series

This commit is contained in:
2026-05-17 15:37:00 -04:00
parent b7fb0b1043
commit 62c3deddaf
10 changed files with 346 additions and 81 deletions

View File

@@ -1,3 +1,14 @@
export interface Series {
id: number;
slug: string;
title: string;
library: 'public' | 'private';
folder_path: string;
has_cover: number;
last_scanned_at: string;
created_at: string;
}
export interface Game {
id: number;
slug: string;
@@ -8,6 +19,7 @@ export interface Game {
genre: string;
has_cover: number;
has_wide: number;
series_id: number | null;
last_scanned_at: string;
created_at: string;
}