Product
export class CreateProductDto {
@Length(2, 50)
readonly name: string;
@IsOptional()
@Length(1, 500)
readonly description?: string;
@IsCurrency()
readonly price: number;
@ArrayNotEmpty()
@IsEntity()
readonly categories: IdDto[];
}Last updated