import { IsNotEmpty } from 'class-validator';

export class UpdateRoleDto {
  @IsNotEmpty()
  id: number;

  @IsNotEmpty()
  roles: string;
}
