import { IsNotEmpty, IsString } from 'class-validator' export class TelegramVerifyDto { @IsString() @IsNotEmpty() tgAuthResult: string }