first commit
This commit is contained in:
8
src/modules/chat/dto/create-chat.dto.ts
Normal file
8
src/modules/chat/dto/create-chat.dto.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { ApiProperty } from '@nestjs/swagger';
|
||||
import { IsUUID } from 'class-validator';
|
||||
|
||||
export class CreateChatDto {
|
||||
@ApiProperty({ description: 'Match ID to open chat for' })
|
||||
@IsUUID()
|
||||
matchId: string;
|
||||
}
|
||||
Reference in New Issue
Block a user