mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 22:54:54 +00:00
13 lines
339 B
TypeScript
13 lines
339 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class DeleteSubspaceModelDto {
|
|
@ApiProperty({
|
|
description: 'Uuid of the subspace model need to be deleted',
|
|
example: '982fc3a3-64dc-4afb-a5b5-65ee8fef0424',
|
|
})
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
subspaceUuid: string;
|
|
}
|