mirror of
https://github.com/vastxie/99AI.git
synced 2026-04-24 11:14:29 +08:00
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class recDrawImgDto {
|
|
@ApiProperty({ example: 1, description: '推荐图片的id' })
|
|
id: number;
|
|
}
|