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