import { IsBoolean, IsNotEmpty } from "class-validator";

export class UpdateConversationNotificationDto {
  @IsNotEmpty()
  @IsBoolean()
  notification: boolean;
}
