import { IsString, IsNotEmpty, Length } from "class-validator"; export class FetchETradeDto { @IsString() @IsNotEmpty() @Length(10, 10, { message: "TIN must be exactly 10 digits" }) tin!: string; }