import { IsString, IsNumber } from 'class-validator';
export class PayoutRequestDto {
@IsNumber() amount: number;
@IsString() method: string;
}