Form-Service/src/participantGroup/dto/update-participantGroup.dto.ts

5 lines
217 B
TypeScript

import { PartialType } from '@nestjs/mapped-types';
import { CreateParticipantGroupDto } from './create-participantGroup.dto';
export class UpdateParticipantGroupDto extends PartialType(CreateParticipantGroupDto) {}