mirror of
https://github.com/vastxie/99AI.git
synced 2026-04-24 11:14:29 +08:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class DelAutoReplyDto {
|
|
@ApiProperty({ example: 1, description: '自动回复id', required: true })
|
|
id: number;
|
|
}
|