Genres: complete dto and entity

This commit is contained in:
Toast 2025-02-07 10:46:35 +01:00
parent 5591101e64
commit c0c9ebb038
2 changed files with 10 additions and 2 deletions

View file

@ -1 +1,5 @@
export class GenreDto {}
export class GenreDto {
_id: string;
name: string;
showIDs: string[];
}

View file

@ -1 +1,5 @@
export class Genre {}
export class Genre {
_id: string;
name: string;
showIDs: string[];
}