remove unused

This commit is contained in:
2026-03-09 14:55:40 +03:30
parent 3549d3eab8
commit 4033760d0f
109 changed files with 33 additions and 7739 deletions
-12
View File
@@ -1,12 +0,0 @@
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;
}