updated space endpoint to follow project

This commit is contained in:
hannathkadher
2024-12-09 17:33:19 +04:00
parent 19825540dd
commit cdc95056ae
9 changed files with 87 additions and 39 deletions

View File

@ -0,0 +1,4 @@
import { PartialType } from '@nestjs/swagger';
import { AddSpaceDto } from './add.space.dto';
export class UpdateSpaceDto extends PartialType(AddSpaceDto) {}