import { IsNotEmpty, IsString } from 'class-validator'; export class HomeDto { @IsString() @IsNotEmpty() public uuid: string; @IsString() @IsNotEmpty() public userUuid: string; @IsString() @IsNotEmpty() public homeId: string; }