mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-28 00:44:54 +00:00
16 lines
259 B
TypeScript
16 lines
259 B
TypeScript
import { IsString, IsNotEmpty } from 'class-validator';
|
|
|
|
export class SpaceModelDto {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
public uuid: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
public spaceModelName: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
projectUuid: string;
|
|
}
|