Files
edr-platform/apps/edr-freight-api/src/modules/customers/dto/update-customer.dto.ts
2026-05-26 01:06:06 +03:00

10 lines
331 B
TypeScript

// src/modules/customers/dto/update-customer.dto.ts
import { PartialType } from '@nestjs/swagger';
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
}