Interfaces: add genre
This commit is contained in:
parent
747e733574
commit
b44fe2e51d
1 changed files with 6 additions and 0 deletions
6
src/interfaces/genre.ts
Normal file
6
src/interfaces/genre.ts
Normal 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[]
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue