import { PartialType } from '@nestjs/swagger';

import { CreateMeetingSummaryStatusDto } from './create-meeting-summary-status.dto';

// Both `code` and `name` become optional, so a caller can update either one.
export class UpdateMeetingSummaryStatusDto extends PartialType(
  CreateMeetingSummaryStatusDto,
) {}
