Files
psp_api/src/modules/admin/device-brands/dto/update-device-brand.dto.ts
T

5 lines
191 B
TypeScript
Raw Normal View History

import { PartialType } from '@nestjs/swagger'
import { CreateDeviceBrandDto } from './create-device-brand.dto'
export class UpdateDeviceBrandDto extends PartialType(CreateDeviceBrandDto) {}