13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
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;
|
|
}
|