6 lines
250 B
TypeScript
6 lines
250 B
TypeScript
import { OmitType } from '@nestjs/mapped-types';
|
|
import { Product } from '../../entity/product.entity';
|
|
|
|
// NOTE: Use class-validator decorators here for production-grade validation.
|
|
export class CreateProductDto extends OmitType(Product, ['id']) {}
|