mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-14 18:05:48 +00:00
16 lines
249 B
TypeScript
16 lines
249 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class HomeDto {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
public uuid: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
public userUuid: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
public homeId: string;
|
|
}
|