katoikia-app/servicio-notificaciones/src/notifications/dto/update-notification.dto.ts

7 lines
216 B
TypeScript

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