import { IsNumber, IsString, IsUrl } from 'class-validator';
export class CreateWebBidDto {
@IsUrl()
origin_url: string;
url: string;
}