import { IsBoolean, IsIn, IsOptional } from 'class-validator';

export class UpdateSettingsDto {
  @IsOptional()
  @IsBoolean()
  notifyCertificate?: boolean;

  @IsOptional()
  @IsIn(['ar'])
  language?: string;

  @IsOptional()
  @IsIn(['default', 'dark'])
  theme?: string;
}
