Interfaces: add genre

This commit is contained in:
Toast 2025-02-07 14:26:15 +01:00
parent 747e733574
commit b44fe2e51d

6
src/interfaces/genre.ts Normal file
View file

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