import { IsNotEmpty } from 'class-validator';

export class CustomUrlDto {
  @IsNotEmpty()
  url: string;

  @IsNotEmpty()
  name: string;
}
