Spaces:
Sleeping
Sleeping
| import { IsString, IsNotEmpty, IsEnum } from 'class-validator'; | |
| import { PayType } from '../../entities/payment.entity'; | |
| export class PreparePaymentDto { | |
| () | |
| () | |
| orderId: string; // Actually number in our system, but PRD said string, we'll convert | |
| (PayType) | |
| () | |
| payType: PayType; | |
| } | |