mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 14:38:12 +00:00
10 lines
331 B
TypeScript
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
|
|
}
|