feat: add update partner endpoint

This commit is contained in:
caturbgs
2021-12-14 15:18:25 +07:00
parent 26e7401163
commit 6b1352e671
4 changed files with 126 additions and 19 deletions

View File

@@ -0,0 +1,5 @@
import { PartialType } from '@nestjs/mapped-types';
import { CreatePartnerDto } from './create-partner.dto';
export class UpdatePartnerDto extends PartialType(CreatePartnerDto) {
}