import { IsNotEmpty, IsString, MaxLength, MinLength } from 'class-validator'; export class SendPublicSmsDto { @IsString() @IsNotEmpty() @MaxLength(253) domain!: string; @IsString() @IsNotEmpty() @MaxLength(32) to!: string; @IsString() @IsNotEmpty() @MinLength(1) @MaxLength(700) message!: string; }