8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator'
|
|
|
|
export class TelegramVerifyDto {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
tgAuthResult: string
|
|
}
|