import { ApiProperty } from '@nestjs/swagger';
import { IsOptional } from 'class-validator';

export class UpdateWalletUserDto {
  @ApiProperty()
  @IsOptional()
  changeRealWallet: number;

  @ApiProperty()
  @IsOptional()
  changeVirtualWallet: number;
}
