import { IsNotEmpty } from 'class-validator';

export class ExchangeWalletDto {
  @IsNotEmpty()
  password: string;
}
