diff --git a/src/interfaces/genre.ts b/src/interfaces/genre.ts new file mode 100644 index 0000000..c1e9d6e --- /dev/null +++ b/src/interfaces/genre.ts @@ -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[] +}