mirror of
https://github.com/vastxie/99AI.git
synced 2026-04-24 11:14:29 +08:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import { IsOptional } from 'class-validator';
|
|
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class ChatListDto {
|
|
@ApiProperty({ example: 1, description: '对话分组ID', required: false })
|
|
@IsOptional()
|
|
groupId: number;
|
|
}
|