File

src/episode/dtos/request/update-episode.dto.ts

Description

Data Transfer Object for updating an existing episode. This DTO extends the CreateEpisodeRequestDto to allow partial updates.

Extends

PartialType( CreateEpisodeRequestDto, )

import { PartialType } from '@nestjs/swagger';
import { CreateEpisodeRequestDto } from './create-episode.dto';

/**
 * Data Transfer Object for updating an existing episode.
 * This DTO extends the CreateEpisodeRequestDto to allow partial updates.
 */
export class UpdateEpisodeRequestDto extends PartialType(
  CreateEpisodeRequestDto,
) {}

results matching ""

    No results matching ""