import { IsNotEmpty, IsString } from 'class-validator';

export class ExecuteDto {
  @IsNotEmpty()
  @IsString()
  sql: string;
}
