diff --git a/src/genres/dto/genre.dto.ts b/src/genres/dto/genre.dto.ts index 156a0f6..8f57ea7 100644 --- a/src/genres/dto/genre.dto.ts +++ b/src/genres/dto/genre.dto.ts @@ -1 +1,5 @@ -export class GenreDto {} +export class GenreDto { + _id: string; + name: string; + showIDs: string[]; +} diff --git a/src/genres/entities/genre.entity.ts b/src/genres/entities/genre.entity.ts index 9baca75..8bfeef1 100644 --- a/src/genres/entities/genre.entity.ts +++ b/src/genres/entities/genre.entity.ts @@ -1 +1,5 @@ -export class Genre {} +export class Genre { + _id: string; + name: string; + showIDs: string[]; +}