Files
edr-platform/apps/edr-freight-api/src/modules/customers/dto/update-customer.dto.ts

10 lines
336 B
TypeScript

// src/modules/customers/dto/update-customer.dto.ts
import { PartialType } from '@nestjs/mapped-types';
import { CreateCustomerDto } from './create-customer.dto';
export class UpdateCustomerDto extends PartialType(CreateCustomerDto) {
email?: string;
vatNumber?: string;
// Add any other properties you need to access directly
}