a9bc31a6创建于 2025年12月7日历史提交
import { ApiProperty } from "@nestjs/swagger";

export class BatchRemoveUserDto {
  @ApiProperty({
    type: [String],
    description: '要删除的email集合'
  })
  emails: string[];
}