mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-11 07:38:49 +00:00
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { ProjectParam } from './project-param.dto';
|
|
import { IsUUID } from 'class-validator';
|
|
|
|
export class CommunityParam extends ProjectParam {
|
|
@ApiProperty({
|
|
description: 'UUID of the community this space belongs to',
|
|
example: 'd290f1ee-6c54-4b01-90e6-d701748f0851',
|
|
})
|
|
@IsUUID()
|
|
communityUuid: string;
|
|
}
|