import { IsString } from 'class-validator'; import { ApiProperty } from '@nestjs/swagger'; export class CreateIconDto { @IsString() @ApiProperty({ example: 'https://example.com/icons/facebook.svg' }) url!: string; @IsString() @ApiProperty({ example: 'group-id-here' }) groupId!: string; }