Files
psp_api/src/modules/partners/dto/partner.dto.ts
T

13 lines
260 B
TypeScript
Raw Normal View History

import { ApiProperty } from '@nestjs/swagger'
import { IsString } from 'class-validator'
export class UpdatePartnerProfileDto {
@IsString()
@ApiProperty({ required: true })
name: string
@IsString()
@ApiProperty({ required: true })
code: string
}