handle series
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user