Update genre interface

This commit is contained in:
Toast 2025-02-20 19:38:16 +01:00
parent a09d4ee75d
commit 2c08c2b69c

View file

@ -2,5 +2,5 @@ export interface Genre {
// ID is assigned by the DB, so I don't want to have to specify it // ID is assigned by the DB, so I don't want to have to specify it
_id?: string _id?: string
name: string name: string
showIDs: string[] image: string
} }