Files
YiAi/service/src/modules/badwords/dto/addBadWords.dto.ts
2024-01-27 19:53:17 +08:00

8 lines
267 B
TypeScript

import { IsNotEmpty, MinLength, MaxLength, IsString, IsIn, IsOptional } from 'class-validator';
import { ApiProperty } from '@nestjs/swagger';
export class AddBadWordDto {
@ApiProperty({ example: 'test', description: '敏感词', required: true })
word: string;
}