Files
nestjs-admin/server/src/modules/system/auth/dto/user-role.dto.ts
2024-11-27 15:25:57 +08:00

9 lines
181 B
TypeScript

import { ArrayUnique, IsNotEmpty, IsString } from 'class-validator';
export class UserRoleDto {
@IsNotEmpty()
@IsString({ each: true })
@ArrayUnique()
roleIds: string[];
}