UNPKG

@ijodkor/nest-payme

Version:

NestJs ilovalar uchun Payme ETT bilan integratsiya qilish uchun kutubxona.

13 lines (10 loc) 239 B
import { ApiProperty } from '@nestjs/swagger'; import { IsNotEmpty } from "class-validator"; export class CardVerifyDto { @ApiProperty() @IsNotEmpty() declare token: string @ApiProperty() @IsNotEmpty() declare code: string }