bid-tool/auto-bid-server/src/modules/notification/dto/update-notification.dto.ts

5 lines
201 B
TypeScript

import { PartialType } from '@nestjs/mapped-types';
import { CreateNotificationDto } from './create-notification.dto';
export class UpdateNotificationDto extends PartialType(CreateNotificationDto) {}